summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKarl Schultz <kschultz@freedesktop.org>2006-03-30 07:53:15 +0000
committerKarl Schultz <kschultz@freedesktop.org>2006-03-30 07:53:15 +0000
commita8c9ecfab005088b1b201abc9d04f5169d1b3b64 (patch)
treef6237cea22baf13b83ccdc4ecf88a204511e12e6 /include
parent4ecb9f05321f20fd293b6cdeb26a7d0aab4e728f (diff)
Fixes from Brian
Diffstat (limited to 'include')
-rw-r--r--include/GL/wmesa.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/GL/wmesa.h b/include/GL/wmesa.h
index 66f3dbe82f0..1c959a6792c 100644
--- a/include/GL/wmesa.h
+++ b/include/GL/wmesa.h
@@ -100,15 +100,14 @@ extern WMesaContext WMesaCreateContext(HDC hDC,HPALETTE* pPal,
/*
* Destroy a rendering context as returned by WMesaCreateContext()
*/
-/*extern void WMesaDestroyContext( WMesaContext ctx );*/
-extern void WMesaDestroyContext( void );
+extern void WMesaDestroyContext( WMesaContext ctx );
/*
* Make the specified context the current one.
*/
-extern void WMesaMakeCurrent( WMesaContext ctx );
+extern void WMesaMakeCurrent( WMesaContext ctx, HDC hdc );
/*
@@ -121,7 +120,7 @@ extern WMesaContext WMesaGetCurrentContext( void );
* Swap the front and back buffers for the current context. No action
* taken if the context is not double buffered.
*/
-extern void WMesaSwapBuffers(void);
+extern void WMesaSwapBuffers(HDC hdc);
/*