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/glx | |
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/glx')
-rw-r--r-- | src/glx/x11/indirect.c | 3 | ||||
-rw-r--r-- | src/glx/x11/single2.c | 3 | ||||
-rw-r--r-- | src/glx/x11/singlepix.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/glx/x11/indirect.c b/src/glx/x11/indirect.c index 262637a9473..48bae1478f4 100644 --- a/src/glx/x11/indirect.c +++ b/src/glx/x11/indirect.c @@ -30,7 +30,8 @@ #include "indirect.h" #include "glxclient.h" #include "indirect_size.h" -#include "dispatch.h" +#include "glapitable.h" +#include "glapidispatch.h" #include "glapi.h" #include "glthread.h" #include <GL/glxproto.h> diff --git a/src/glx/x11/single2.c b/src/glx/x11/single2.c index d128ba20537..9ecf589ffff 100644 --- a/src/glx/x11/single2.c +++ b/src/glx/x11/single2.c @@ -35,7 +35,8 @@ #include "glxextensions.h" #include "indirect.h" #include "indirect_vertex_array.h" -#include "dispatch.h" +#include "glapitable.h" +#include "glapidispatch.h" #include "glapi.h" #ifdef USE_XCB #include <xcb/xcb.h> diff --git a/src/glx/x11/singlepix.c b/src/glx/x11/singlepix.c index fa12ac3bbcb..f5ebf4dfdbf 100644 --- a/src/glx/x11/singlepix.c +++ b/src/glx/x11/singlepix.c @@ -30,7 +30,8 @@ #include "packsingle.h" #include "indirect.h" -#include "dispatch.h" +#include "glapitable.h" +#include "glapidispatch.h" #include "glapi.h" #include "glthread.h" #include "glapioffsets.h" |