diff options
author | Ian Romanick <[email protected]> | 2004-12-21 21:26:36 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-12-21 21:26:36 +0000 |
commit | 1d27084043855d2609b54d3435f0bd85e39762e2 (patch) | |
tree | c125fec1fd916feb80433d7c65a03fc7d5df8de4 /src/mesa/glapi/gl_apitemp.py | |
parent | b756990b8407d67a15cf7f63683d50dd7f9e3a4e (diff) |
Added some comments and fixed typeos. Slightly refactored the way
function parameters are iterated. There are no changes in the generated
code.
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 1e5c3f4efa5..533cc65becd 100644 --- a/src/mesa/glapi/gl_apitemp.py +++ b/src/mesa/glapi/gl_apitemp.py @@ -48,7 +48,7 @@ class PrintGlOffsets(gl_XML.FilterGLAPISpecBase): t_string = "" comma = "" - for p in f: + for p in f.parameterIterator(): cast = "" if p.is_pointer: |