diff options
author | Ian Romanick <[email protected]> | 2005-04-14 23:03:44 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-04-14 23:03:44 +0000 |
commit | 067e788acd80b5bb276aa0c1c6d7a67b234990da (patch) | |
tree | 011eff14e6fc1561aa4317aae72138cdc6edf0aa /src/mesa/glapi/gl_XML.py | |
parent | 73b4c1b3885bacb3a0ec5be645dbfbbefb99b658 (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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index 8b7b400d9a4..bb6ec2b54ad 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 = [] |