summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dos
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-14 17:08:17 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-14 17:08:17 +0000
commit60b6e4fd7e85ca0ad1c4ab22433b745bf97e9280 (patch)
tree5368e3158654b0d3d52a828ea517909635b5e267 /src/mesa/drivers/dos
parent795ae30787e6fd9413a495586edf4973e4987417 (diff)
context-related cleanups (ex: _mesa_notifySwapBuffers instead of _mesa_swapbuffers)
Diffstat (limited to 'src/mesa/drivers/dos')
-rw-r--r--src/mesa/drivers/dos/dmesa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dos/dmesa.c b/src/mesa/drivers/dos/dmesa.c
index ac21e8a15f..65c82da19a 100644
--- a/src/mesa/drivers/dos/dmesa.c
+++ b/src/mesa/drivers/dos/dmesa.c
@@ -936,6 +936,6 @@ void DMesaSwapBuffers (DMesaBuffer b)
{
/* copy/swap back buffer to front if applicable */
GET_CURRENT_CONTEXT(ctx);
- _mesa_swapbuffers(ctx);
+ _mesa_notifySwapBuffers(ctx);
vl_flip(b->the_window, b->stride, b->height);
}