diff options
author | Brian Paul <[email protected]> | 2005-10-20 21:12:35 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-20 21:12:35 +0000 |
commit | c8f86105d0df2ef14c9dd9fc193f8cd40b58fc00 (patch) | |
tree | 18531607f7472da776e66a46bd4d62e7bc42e5bd /src/mesa/glapi/gl_XML.py | |
parent | 6f980dbf21893af4e7413dbb0373fb79761294c7 (diff) |
Disable the FASTCALL optimization because it still breaks server-side GLX.
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index 11b23b7a867..0cea2687771 100644 --- a/src/mesa/glapi/gl_XML.py +++ b/src/mesa/glapi/gl_XML.py @@ -194,11 +194,9 @@ class gl_print_base: """ self.undef_list.append("FASTCALL") - print """# if defined(__i386__) && defined(__GNUC__) && !defined(__CYGWIN__) && !defined(__MINGW32__) -# define FASTCALL __attribute__((fastcall)) -# else -# define FASTCALL -# endif""" + # I've removed the previous code for __attribute__((fastcall)) + # because it breaks server-side GLX. (BrianP) + print "#define FASTCALL" return |