1999-01-03 18:00:19 +01:00
|
|
|
/* Wrapper for OpenGL includes...
|
|
|
|
Copyright 1998 - Lionel Ulmer
|
|
|
|
|
|
|
|
This wrapper is needed because Mesa uses also the CALLBACK / WINAPI
|
|
|
|
constants. */
|
|
|
|
|
1999-06-12 20:36:54 +02:00
|
|
|
#ifndef __WINE_WINE_GL_H
|
|
|
|
#define __WINE_WINE_GL_H
|
1999-01-03 18:00:19 +01:00
|
|
|
|
1999-01-30 16:54:43 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
#if defined(HAVE_OPENGL)
|
1999-01-30 16:54:43 +01:00
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
#include "x11drv.h"
|
|
|
|
|
|
|
|
/* As GLX relies on X, this is needed */
|
|
|
|
#define ENTER_GL() EnterCriticalSection( &X11DRV_CritSection )
|
|
|
|
#define LEAVE_GL() LeaveCriticalSection( &X11DRV_CritSection )
|
1999-01-03 18:00:19 +01:00
|
|
|
|
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
2000-01-15 23:24:47 +01:00
|
|
|
#define XMD_H /* This is to prevent the Xmd.h inclusion bug to happen :-/ */
|
1999-01-03 18:00:19 +01:00
|
|
|
#include <GL/gl.h>
|
1999-05-13 20:53:05 +02:00
|
|
|
#include <GL/glx.h>
|
2000-08-08 22:46:50 +02:00
|
|
|
#ifdef HAVE_GL_GLEXT_H
|
|
|
|
# include <GL/glext.h>
|
|
|
|
#endif
|
2000-01-15 23:24:47 +01:00
|
|
|
#undef XMD_H
|
1999-01-03 18:00:19 +01:00
|
|
|
|
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
|
|
|
/* Redefines the constants */
|
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#define WINAPI __stdcall
|
|
|
|
#define APIENTRY WINAPI
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
#endif /* HAVE_OPENGL */
|
1999-01-03 18:00:19 +01:00
|
|
|
|
1999-06-12 20:36:54 +02:00
|
|
|
#endif /* __WINE_WINE_GL_H */
|