diff options
| -rw-r--r-- | include/GL/mesa_wgl.h | 33 | 
1 files changed, 33 insertions, 0 deletions
diff --git a/include/GL/mesa_wgl.h b/include/GL/mesa_wgl.h new file mode 100644 index 0000000000..afa70d2c62 --- /dev/null +++ b/include/GL/mesa_wgl.h @@ -0,0 +1,33 @@ +/* prototypes for the Mesa WGL functions */
 +/* relocated here so that I could make GLUT get them properly */
 +
 +#ifndef GL_H
 +#include <gl/gl.h>
 +#endif
 +
 +WGLAPI int   GLAPIENTRY wglDeleteContext(HGLRC);
 +WGLAPI int   GLAPIENTRY wglMakeCurrent(HDC,HGLRC);
 +WGLAPI int   GLAPIENTRY wglSetPixelFormat(HDC, int, const PIXELFORMATDESCRIPTOR *);
 +WGLAPI int   GLAPIENTRY wglSwapBuffers(HDC hdc);
 +WGLAPI HDC   GLAPIENTRY wglGetCurrentDC(void);
 +WGLAPI HGLRC GLAPIENTRY wglCreateContext(HDC);
 +WGLAPI HGLRC GLAPIENTRY wglCreateLayerContext(HDC,int);
 +WGLAPI HGLRC GLAPIENTRY wglGetCurrentContext(void);
 +WGLAPI PROC  GLAPIENTRY wglGetProcAddress(const char*);
 +WGLAPI int   GLAPIENTRY SwapBuffers(HDC);
 +WGLAPI int   GLAPIENTRY wglChoosePixelFormat(HDC, const PIXELFORMATDESCRIPTOR *);
 +WGLAPI int   GLAPIENTRY wglCopyContext(HGLRC, HGLRC, unsigned int);
 +WGLAPI int   GLAPIENTRY wglDeleteContext(HGLRC);
 +WGLAPI int   GLAPIENTRY wglDescribeLayerPlane(HDC, int, int, unsigned int,LPLAYERPLANEDESCRIPTOR);
 +WGLAPI int   GLAPIENTRY wglDescribePixelFormat(HDC,int, unsigned int, LPPIXELFORMATDESCRIPTOR);
 +WGLAPI int   GLAPIENTRY wglGetLayerPaletteEntries(HDC, int, int, int,COLORREF *);
 +WGLAPI int   GLAPIENTRY wglGetPixelFormat(HDC hdc);
 +WGLAPI int   GLAPIENTRY wglMakeCurrent(HDC, HGLRC);
 +WGLAPI int   GLAPIENTRY wglRealizeLayerPalette(HDC, int, int);
 +WGLAPI int   GLAPIENTRY wglSetLayerPaletteEntries(HDC, int, int, int,const COLORREF *);
 +WGLAPI int   GLAPIENTRY wglShareLists(HGLRC, HGLRC);
 +WGLAPI int   GLAPIENTRY wglSwapLayerBuffers(HDC, unsigned int);
 +WGLAPI int   GLAPIENTRY wglUseFontBitmapsA(HDC, unsigned long, unsigned long, unsigned long);
 +WGLAPI int   GLAPIENTRY wglUseFontBitmapsW(HDC, unsigned long, unsigned long, unsigned long);
 +WGLAPI int   GLAPIENTRY wglUseFontOutlinesA(HDC, unsigned long, unsigned long, unsigned long, float,float, int, LPGLYPHMETRICSFLOAT);
 +WGLAPI int   GLAPIENTRY wglUseFontOutlinesW(HDC, unsigned long, unsigned long, unsigned long, float,float, int, LPGLYPHMETRICSFLOAT);
  | 
