diff options
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glX_proto_size.py | 4 | ||||
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 17 |
2 files changed, 0 insertions, 21 deletions
diff --git a/src/mesa/glapi/glX_proto_size.py b/src/mesa/glapi/glX_proto_size.py index b097fed0ebb..d4c8b553e41 100644 --- a/src/mesa/glapi/glX_proto_size.py +++ b/src/mesa/glapi/glX_proto_size.py @@ -313,8 +313,6 @@ class PrintGlxSizeStubs_c(PrintGlxSizeStubs_common): print '#include "indirect_size.h"' print '' - self.printHaveAlias() - print '' self.printPure() print '' self.printFastcall() @@ -437,8 +435,6 @@ class PrintGlxReqSize_c(PrintGlxReqSize_common): print '' print '#define __GLX_PAD(x) (((x) + 3) & ~3)' print '' - self.printHaveAlias() - print '' print '#ifdef HAVE_ALIAS' print '# define ALIAS2(from,to) \\' print ' GLint __glX ## from ## ReqSize( const GLbyte * pc, Bool swap ) \\' diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index 651bd7369b3..3b87b724ab6 100644 --- a/src/mesa/glapi/gl_XML.py +++ b/src/mesa/glapi/gl_XML.py @@ -242,23 +242,6 @@ class gl_print_base: return - def printHaveAlias(self): - """Conditionally define `HAVE_ALIAS'. - - Conditionally defines a preprocessor macro `HAVE_ALIAS'. The - existance of this macro can be used to determine whether or - not GCC's alias function attribute can be used. - - The name is also added to the file's undef_list. - """ - - self.undef_list.append("HAVE_ALIAS") - print """# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) -# define HAVE_ALIAS -# endif""" - return - - def real_function_name(element): name = element.nsProp( "name", None ) alias = element.nsProp( "alias", None ) |