summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/gl_XML.py
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-04-14 23:03:44 +0000
committerIan Romanick <idr@us.ibm.com>2005-04-14 23:03:44 +0000
commit067e788acd80b5bb276aa0c1c6d7a67b234990da (patch)
tree011eff14e6fc1561aa4317aae72138cdc6edf0aa /src/mesa/glapi/gl_XML.py
parent73b4c1b3885bacb3a0ec5be645dbfbbefb99b658 (diff)
Convert 'variable_param' from a CDATA attribute to a NMTOKENS attribute.
The main difference is that white-space is used to separate the names instead of comas.
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r--src/mesa/glapi/gl_XML.py2
1 files changed, 1 insertions, 1 deletions
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 = []