diff options
Diffstat (limited to 'xorg-server/hw/xwin/glx/wgl_ext_api.c')
-rw-r--r-- | xorg-server/hw/xwin/glx/wgl_ext_api.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/glx/wgl_ext_api.c b/xorg-server/hw/xwin/glx/wgl_ext_api.c index 78b6e2a02..c11eb4f14 100644 --- a/xorg-server/hw/xwin/glx/wgl_ext_api.c +++ b/xorg-server/hw/xwin/glx/wgl_ext_api.c @@ -35,15 +35,20 @@ #include <GL/glext.h> #include <glx/glxserver.h> #include <glx/glxext.h> -#include <GL/wglext.h> +#include "wglext.h" #include <wgl_ext_api.h> #include "glwindows.h" #define RESOLVE_DECL(type) \ static type type##proc = NULL; +#ifdef _DEBUG #define PRERESOLVE(type, symbol) \ type##proc = (type)wglGetProcAddress(symbol); +#else +#define PRERESOLVE(type, symbol) \ + type##proc = (type)wglGetProcAddress(symbol); +#endif #define RESOLVE_RET(type, symbol, retval) \ if (type##proc == NULL) { \ |