diff options
author | Ian Romanick <[email protected]> | 2005-01-07 03:22:56 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-01-07 03:22:56 +0000 |
commit | a285acbbef997d223de819e960d55724f52757d4 (patch) | |
tree | ef127980428fdae4cf398af81751d17a3017a789 /src/mesa/glapi/gl_XML.py | |
parent | 70d2f152f8e312a6c51dd4547d39b09284b2c0de (diff) |
Track the GLX protocol names for GL types.
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index f984d5f87fb..538756ea0c2 100644 --- a/src/mesa/glapi/gl_XML.py +++ b/src/mesa/glapi/gl_XML.py @@ -105,6 +105,7 @@ class glType( glItem ): def __init__(self, context, name, attrs): self.size = int(attrs.get('size', "0")) + self.glx_name = attrs.get('glx_name', "") type_name = "GL" + attrs.get('name', None) glItem.__init__(self, name, type_name, context) |