diff options
author | Chia-I Wu <[email protected]> | 2011-08-11 16:41:09 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-08-13 15:14:00 +0800 |
commit | 6eff33dc7f2cd6e1430bd8dcaef4a7eb9fe3f6ee (patch) | |
tree | e5050a4cb46e75b364b72cbe9af655c15831b80b /src/mesa/main | |
parent | 786e5a2fb47e39c67a342eb22d84c665d058ee10 (diff) |
glapi: generate ES dispatch headers from core mesa
GLESv1 and GLESv2 have their own dispatch.h and remap_helper.h. These
headers are only used by api_exec_es1.c and api_exec_es2.c in core mesa.
Move the rules to generate them from glapi to core mesa.
Reviewed-by: Brian Paul <[email protected]>
[olv: updated after reviewing to fix SCons build]
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/es_generator.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/es_generator.py b/src/mesa/main/es_generator.py index c0b0a445806..cad3deaef94 100644 --- a/src/mesa/main/es_generator.py +++ b/src/mesa/main/es_generator.py @@ -681,10 +681,10 @@ print """ #if FEATURE_remap_table /* define esLocalRemapTable */ -#include "%sapi/main/dispatch.h" +#include "main/api_exec_%s_dispatch.h" #define need_MESA_remap_table -#include "%sapi/main/remap_helper.h" +#include "main/api_exec_%s_remap_helper.h" static void init_remap_table(void) |