Mesa (master): glapi: Stop handling XML annotation exec="{es,check, loopback}".

Paul Berry stereotype441 at kemper.freedesktop.org
Mon Nov 12 18:55:05 UTC 2012


Module: Mesa
Branch: master
Commit: 21e23fbe2124aa591204ad77762adf6d9f37d062
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=21e23fbe2124aa591204ad77762adf6d9f37d062

Author: Paul Berry <stereotype441 at gmail.com>
Date:   Wed Nov  7 09:31:39 2012 -0800

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 at vmware.com>

---

 src/mapi/glapi/gen/gl_genexec.py |    3 ---
 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 ee36bee..9b71689 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,
     }




More information about the mesa-commit mailing list