gl_table.py: always regenerate the complete struct _glapi_table
authorEmil Velikov <emil.velikov@collabora.com>
Thu, 13 Apr 2017 16:50:10 +0000 (17:50 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Thu, 4 May 2017 17:12:07 +0000 (18:12 +0100)
Currently we would generate a partial one as we do non-shared glapi.
At the same time since it's local, we don't care that much if we have a
few extra bytes of space in the table.

Drop the guard, which allows us to simplify both build system and code.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
src/mapi/glapi/gen/gl_table.py

index 43c9135d2d1432366a45987a1fb8449c6dd4627e..80a44f4848847adc1c01ed95f6a4264f9b475f9a 100644 (file)
@@ -40,20 +40,14 @@ class PrintGlTable(gl_XML.gl_print_base):
         self.license = license.bsd_license_template % ( \
 """Copyright (C) 1999-2003  Brian Paul   All Rights Reserved.
 (C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
-        self.ifdef_emitted = False
         return
 
     def printBody(self, api):
         for f in api.functionIterateByOffset():
-            if not f.is_abi() and not self.ifdef_emitted:
-                print '#if !defined HAVE_SHARED_GLAPI'
-                self.ifdef_emitted = True
             arg_string = f.get_parameter_string()
             print '   %s (GLAPIENTRYP %s)(%s); /* %d */' % (
                 f.return_type, f.name, arg_string, f.offset)
 
-        print '#endif /* !defined HAVE_SHARED_GLAPI */'
-
     def printRealHeader(self):
         print '#ifndef GLAPIENTRYP'
         print '# ifndef GLAPIENTRY'