summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/gl_apitemp.py
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2004-05-19 23:33:08 +0000
committerIan Romanick <idr@us.ibm.com>2004-05-19 23:33:08 +0000
commita9d033c4603b9e5d5ed05fd4b3738e61f1ee4e72 (patch)
treeaf898250f827ec1ae36e57a1f22fa5f205ba9041 /src/mesa/glapi/gl_apitemp.py
parentd54549df239cd0fd64c94f59d632a64cf3115b75 (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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_apitemp.py b/src/mesa/glapi/gl_apitemp.py
index 59655a2179..b210c704a7 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 = ", "