OSDN Git Service

glapi: Stop handling XML annotation exec="{es,check,loopback}".
authorPaul Berry <stereotype441@gmail.com>
Wed, 7 Nov 2012 17:31:39 +0000 (09:31 -0800)
committerPaul Berry <stereotype441@gmail.com>
Mon, 12 Nov 2012 18:53:58 +0000 (10:53 -0800)
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>
src/mapi/glapi/gen/gl_genexec.py

index ee36bee..9b71689 100644 (file)
@@ -32,10 +32,7 @@ import sys, getopt
 
 
 exec_flavor_map = {
-    'check': '_check_',
     'dynamic': None,
-    'es': '_es_',
-    'loopback': 'loopback_',
     'mesa': '_mesa_',
     'skip': None,
     }