diff options
author | Ian Romanick <[email protected]> | 2005-06-24 18:35:31 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-06-24 18:35:31 +0000 |
commit | 5aafea03af051fa06589580205342001a8eb2693 (patch) | |
tree | d64bb39891c7313296d5d00fe305e698ca09a01c /src/mesa/glapi/gl_apitemp.py | |
parent | 3fb86eefe8b22e8d95111ef49feb0a91d865fd00 (diff) |
Fix non-x86 specific builds. The changes from glTexImage3DEXT to
glTexImage3D that caused me so many problems during the re-development
of the API scripts reared its ugly head again. This has been fixed by
tracking the parameter string for each entry-point individually.
This has the annoying side-effect that the names of the parameters in
all aliases of a function must be the same or gl_apitemp.py will
generate bad code. :( The changes in
src/mesa/glapi/{gl_API.xml,glapitable.h} and src/glx/x11/* are caused
by fixing the parameter names in various function aliases that didn't
match.
Reported by: Eric Anholt, Jacob Jansen
Diffstat (limited to 'src/mesa/glapi/gl_apitemp.py')
-rw-r--r-- | src/mesa/glapi/gl_apitemp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/gl_apitemp.py b/src/mesa/glapi/gl_apitemp.py index 32fca646c15..7cc434fa89b 100644 --- a/src/mesa/glapi/gl_apitemp.py +++ b/src/mesa/glapi/gl_apitemp.py @@ -72,7 +72,7 @@ class PrintGlOffsets(gl_XML.gl_print_base): dispatch = "DISPATCH" print 'KEYWORD1 %s KEYWORD2 NAME(%s)(%s)' \ - % (f.return_type, name, f.get_parameter_string()) + % (f.return_type, name, f.get_parameter_string(name)) print '{' if p_string == "": print ' %s(%s, (), (F, "gl%s();\\n"));' \ |