diff options
author | Ian Romanick <[email protected]> | 2004-05-19 23:33:08 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2004-05-19 23:33:08 +0000 |
commit | a9d033c4603b9e5d5ed05fd4b3738e61f1ee4e72 (patch) | |
tree | af898250f827ec1ae36e57a1f22fa5f205ba9041 /src/mesa/glapi/gl_apitemp.py | |
parent | d54549df239cd0fd64c94f59d632a64cf3115b75 (diff) |
Added some in-code documentation. Modifed glParameter to be a
subclass of glItem.
Diffstat (limited to 'src/mesa/glapi/gl_apitemp.py')
-rw-r--r-- | src/mesa/glapi/gl_apitemp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_apitemp.py b/src/mesa/glapi/gl_apitemp.py index 59655a21793..b210c704a74 100644 --- a/src/mesa/glapi/gl_apitemp.py +++ b/src/mesa/glapi/gl_apitemp.py @@ -62,8 +62,8 @@ class PrintGlOffsets(gl_XML.FilterGLAPISpecBase): t = "%d" t_string = t_string + comma + t - p_string = p_string + comma + p.p_name - o_string = o_string + comma + cast + p.p_name + p_string = p_string + comma + p.name + o_string = o_string + comma + cast + p.name comma = ", " |