summaryrefslogtreecommitdiff
path: root/src/mesa/glapi
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r--src/mesa/glapi/gl_API.xml8
-rw-r--r--src/mesa/glapi/gl_XML.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/glapi/gl_API.xml b/src/mesa/glapi/gl_API.xml
index baca5a4352..e583c39e38 100644
--- a/src/mesa/glapi/gl_API.xml
+++ b/src/mesa/glapi/gl_API.xml
@@ -45,7 +45,7 @@
img_send_null (true | false) "false"
img_null_flag (true | false) "false"
img_pad_dimensions (true | false) "false"
- variable_param CDATA #IMPLIED>
+ variable_param NMTOKENS #IMPLIED>
<!ATTLIST return type CDATA "void">
<!ATTLIST glx rop NMTOKEN #IMPLIED
sop NMTOKEN #IMPLIED
@@ -2801,21 +2801,21 @@ glx:
<function name="GetMapdv" offset="266">
<param name="target" type="GLenum"/>
<param name="query" type="GLenum"/>
- <param name="v" type="GLdouble *" output="true" variable_param="target, query"/>
+ <param name="v" type="GLdouble *" output="true" variable_param="target query"/>
<glx sop="120"/>
</function>
<function name="GetMapfv" offset="267">
<param name="target" type="GLenum"/>
<param name="query" type="GLenum"/>
- <param name="v" type="GLfloat *" output="true" variable_param="target, query"/>
+ <param name="v" type="GLfloat *" output="true" variable_param="target query"/>
<glx sop="121"/>
</function>
<function name="GetMapiv" offset="268">
<param name="target" type="GLenum"/>
<param name="query" type="GLenum"/>
- <param name="v" type="GLint *" output="true" variable_param="target, query"/>
+ <param name="v" type="GLint *" output="true" variable_param="target query"/>
<glx sop="122"/>
</function>
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py
index 8b7b400d9a..bb6ec2b54a 100644
--- a/src/mesa/glapi/gl_XML.py
+++ b/src/mesa/glapi/gl_XML.py
@@ -171,7 +171,7 @@ class glParameter( glItem ):
temp = attrs.get('variable_param', None)
if temp:
- self.count_parameter_list = temp.replace( ' ', '' ).split( ',' )
+ self.count_parameter_list = temp.split( ' ' )
else:
self.count_parameter_list = []