summaryrefslogtreecommitdiff
path: root/src/mesa/SConscript
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2012-10-23 13:24:17 -0700
committerPaul Berry <stereotype441@gmail.com>2012-11-01 11:26:30 -0700
commita8ab7e335df4cd7841bbbe572d5494796bb4e398 (patch)
tree40b64014369daff017681f309f65cb0d1f9fbdc8 /src/mesa/SConscript
parent8386088e3dc6fbd223dca7cc966b86f9ab0652b5 (diff)
dispatch: stop generating separate GLES1 API code.
This patch removes the generated files api_exec_es1.c, api_exec_es1_dispatch.h, and api_exec_es1_remap_helper.h (and the source files and build rules used to generate them), since they are no longer used. GLES1 now uses the same dispatch table layout as all the other APIs. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/SConscript')
-rw-r--r--src/mesa/SConscript18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mesa/SConscript b/src/mesa/SConscript
index 12bb70aecda..53e5ee8c206 100644
--- a/src/mesa/SConscript
+++ b/src/mesa/SConscript
@@ -339,27 +339,9 @@ if env['gles']:
# generate GLES sources
gles_sources = ['main/es1_conversion.c',]
- gles_sources += env.CodeGenerate(
- target = 'main/api_exec_es1.c',
- script = 'main/es_generator.py',
- source = 'main/APIspec.xml',
- command = python_cmd + ' $SCRIPT -S $SOURCE -V GLES1.1 > $TARGET'
- )
# generate GLES headers
gles_headers = []
- gles_headers += env.CodeGenerate(
- target = 'main/api_exec_es1_dispatch.h',
- script = GLAPI + 'gen/gl_table.py',
- source = GLAPI + 'gen/gl_and_es_API.xml',
- command = python_cmd + ' $SCRIPT -c es1 -m remap_table -f $SOURCE > $TARGET',
- )
- gles_headers += env.CodeGenerate(
- target = 'main/api_exec_es1_remap_helper.h',
- script = GLAPI + 'gen/remap_helper.py',
- source = GLAPI + 'gen/gl_and_es_API.xml',
- command = python_cmd + ' $SCRIPT -c es1 -f $SOURCE > $TARGET',
- )
env.Depends(gles_sources, gles_headers)