diff options
author | Chia-I Wu <[email protected]> | 2010-02-24 12:01:14 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-02-25 21:32:58 +0800 |
commit | 2cf44390d1e819f23e1d7ceb3199276c9148c647 (patch) | |
tree | 59c56c5818e401c086569a9587366404f8c33fcc /src/mesa/es | |
parent | 27d260b41038e0c19c8f24b8bdb2c004c1eb7aa2 (diff) |
mesa: Move src/mesa/glapi/dispatch.h to mesa.
glapi/dispatch.h is a core Mesa header file. Move the header file to
main/ to make this clear. It also becomes clear after this change that
IN_DRI_DRIVER is only used in core Mesa to enable the remap table.
Diffstat (limited to 'src/mesa/es')
-rw-r--r-- | src/mesa/es/main/drawtex.c | 2 | ||||
-rw-r--r-- | src/mesa/es/main/es_generator.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/es/main/drawtex.c b/src/mesa/es/main/drawtex.c index cbd41ca9759..42f44093972 100644 --- a/src/mesa/es/main/drawtex.c +++ b/src/mesa/es/main/drawtex.c @@ -25,7 +25,7 @@ #include "main/state.h" #include "main/imports.h" -#include "glapi/dispatch.h" +#include "main/dispatch.h" #if FEATURE_OES_draw_texture diff --git a/src/mesa/es/main/es_generator.py b/src/mesa/es/main/es_generator.py index 590f5940a7b..f736792deca 100644 --- a/src/mesa/es/main/es_generator.py +++ b/src/mesa/es/main/es_generator.py @@ -207,7 +207,7 @@ extern void _mesa_error(void *ctx, GLenum error, const char *fmtString, ... ); #include "main/compiler.h" #include "main/api_exec.h" -#include "glapi/dispatch.h" +#include "main/dispatch.h" typedef void (*_glapi_proc)(void); /* generic function pointer */ """ |