Module: Mesa Branch: master Commit: c6e00b6f6c9ea54ac10a0fbb6af85d9673f9db2f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c6e00b6f6c9ea54ac10a0fbb6af85d9673f9db2f
Author: Brian Paul <[email protected]> Date: Wed Apr 17 09:49:39 2013 -0600 glapi: no longer emit #include "mfeatures.h" in generated files None of the symbols in mfeatures.h are used anymore. Reviewed-by: Jordan Justen <[email protected]> --- src/mapi/glapi/gen/gl_enums.py | 1 - src/mapi/glapi/gen/gl_genexec.py | 1 - src/mapi/glapi/gen/gl_table.py | 6 ------ 3 files changed, 0 insertions(+), 8 deletions(-) diff --git a/src/mapi/glapi/gen/gl_enums.py b/src/mapi/glapi/gen/gl_enums.py index 0bf8b0a..3bd511e 100644 --- a/src/mapi/glapi/gen/gl_enums.py +++ b/src/mapi/glapi/gen/gl_enums.py @@ -43,7 +43,6 @@ class PrintGlEnums(gl_XML.gl_print_base): def printRealHeader(self): print '#include "main/glheader.h"' - print '#include "main/mfeatures.h"' print '#include "main/enums.h"' print '#include "main/imports.h"' print '#include "main/mtypes.h"' diff --git a/src/mapi/glapi/gen/gl_genexec.py b/src/mapi/glapi/gen/gl_genexec.py index a85b447..8267298 100644 --- a/src/mapi/glapi/gen/gl_genexec.py +++ b/src/mapi/glapi/gen/gl_genexec.py @@ -44,7 +44,6 @@ header = """/** */ -#include "main/mfeatures.h" #include "main/accum.h" #include "main/api_loopback.h" #include "main/api_exec.h" diff --git a/src/mapi/glapi/gen/gl_table.py b/src/mapi/glapi/gen/gl_table.py index 99957f6..fd38468 100644 --- a/src/mapi/glapi/gen/gl_table.py +++ b/src/mapi/glapi/gen/gl_table.py @@ -97,12 +97,6 @@ class PrintRemapTable(gl_XML.gl_print_base): * can SET_FuncName, are used to get and set the dispatch pointer for the * named function in the specified dispatch table. */ - -/* GLXEXT is defined when building the GLX extension in the xserver. - */ -#if !defined(GLXEXT) -#include "main/mfeatures.h" -#endif """ return _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
