diff options
Diffstat (limited to 'src/mesa/glapi/glX_XML.py')
-rw-r--r-- | src/mesa/glapi/glX_XML.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/mesa/glapi/glX_XML.py b/src/mesa/glapi/glX_XML.py index 8efc90ca56a..4c9da6e304d 100644 --- a/src/mesa/glapi/glX_XML.py +++ b/src/mesa/glapi/glX_XML.py @@ -244,17 +244,12 @@ class glXEnum(gl_XML.glEnum): def startElement(self, name, attrs): if name == "size": - n = attrs.get('name', None) + [n, c] = self.process_attributes(attrs) + if not self.context.glx_enum_functions.has_key( n ): f = glXEnumFunction( n ) self.context.glx_enum_functions[ f.name ] = f - temp = attrs.get('count', None) - try: - c = int(temp) - except Exception,e: - raise RuntimeError('Invalid count value "%s" for enum "%s" in function "%s" when an integer was expected.' % (temp, self.name, n)) - self.context.glx_enum_functions[ n ].append( c, self.value, self.name ) else: gl_XML.glEnum.startElement(self, context, name, attrs) |