summaryrefslogtreecommitdiff
path: root/src/mapi
diff options
context:
space:
mode:
authorPaul Berry <stereotype441@gmail.com>2012-11-07 09:31:39 -0800
committerPaul Berry <stereotype441@gmail.com>2012-11-12 10:53:58 -0800
commit21e23fbe2124aa591204ad77762adf6d9f37d062 (patch)
tree5d6fda7df47e53ba9b4edd897e3fe7e292ae2982 /src/mapi
parent55b81ff56b89ef21747e022896674dd024b9ec7e (diff)
glapi: Stop handling XML annotation exec="{es,check,loopback}".
Previously, we used these XML annotations to make the code generation scripts aware of any instances where the Mesa implementation of a function had a prefix other than "_mesa_". Now that all of the mesa implementation functions have been renamed to match the XML, we only need to handle exec="skip", exec="dynamic", and the default case of exec="mesa". Acked-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mapi')
-rw-r--r--src/mapi/glapi/gen/gl_genexec.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mapi/glapi/gen/gl_genexec.py b/src/mapi/glapi/gen/gl_genexec.py
index ee36beeac1a..9b716894caf 100644
--- a/src/mapi/glapi/gen/gl_genexec.py
+++ b/src/mapi/glapi/gen/gl_genexec.py
@@ -32,10 +32,7 @@ import sys, getopt
exec_flavor_map = {
- 'check': '_check_',
'dynamic': None,
- 'es': '_es_',
- 'loopback': 'loopback_',
'mesa': '_mesa_',
'skip': None,
}