diff options
author | Chia-I Wu <[email protected]> | 2010-01-21 17:13:42 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-21 17:48:38 +0800 |
commit | bdd250080593c6d0d5addcaff0b2a5c880d7a3b2 (patch) | |
tree | 03c124a9834332d76c5bb20c0189997e82ab8bb9 /src/gallium/winsys | |
parent | 1af67195b31f66c725293c916b794fbdb633aec9 (diff) |
Do not include glapi/dispatch.h outside Mesa core.
Include the glapi*.h directly instead. glapi/dispatch.h became a Mesa
core header since 22884db174b9fb0736cec1c6a192f8b9a97500c1.
Diffstat (limited to 'src/gallium/winsys')
-rw-r--r-- | src/gallium/winsys/xlib/xlib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/winsys/xlib/xlib.c b/src/gallium/winsys/xlib/xlib.c index 541ea7ae352..67617a470d6 100644 --- a/src/gallium/winsys/xlib/xlib.c +++ b/src/gallium/winsys/xlib/xlib.c @@ -116,7 +116,8 @@ extern void (*linker_foo(const unsigned char *procName))() #define GL_GLEXT_PROTOTYPES #include "GL/gl.h" #include "glapi/glapi.h" -#include "glapi/dispatch.h" +#include "glapi/glapitable.h" +#include "glapi/glapidispatch.h" #if defined(USE_MGL_NAMESPACE) #define NAME(func) mgl##func |