diff options
author | Ian Romanick <idr@us.ibm.com> | 2004-12-01 09:06:34 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2004-12-01 09:06:34 +0000 |
commit | b53df18624a1b3870c1dcfe3981c07c089efe262 (patch) | |
tree | ed03227f625daae059a7186d1c24423124332bbb /src/mesa/glapi | |
parent | 548435215dc43ff4940c74f0082f48f897080ccf (diff) |
Slightly tweak the format of the size prototypes.
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/glX_proto_send.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glX_proto_send.py b/src/mesa/glapi/glX_proto_send.py index 77d54b6ef1..452cd7f4d6 100644 --- a/src/mesa/glapi/glX_proto_send.py +++ b/src/mesa/glapi/glX_proto_send.py @@ -934,7 +934,7 @@ class PrintGlxSizeStubs_h(GlxProto): def printFunction(self, f): if self.glx_enum_functions.has_key(f.name): ef = self.glx_enum_functions[f.name] - print 'extern INTERNAL GLint __gl%s_size(GLenum) PURE FASTCALL;' % (f.name) + print 'extern INTERNAL PURE FASTCALL GLint __gl%s_size(GLenum);' % (f.name) def show_usage(): |