summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/gl_XML.py
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2005-01-07 03:22:56 +0000
committerIan Romanick <idr@us.ibm.com>2005-01-07 03:22:56 +0000
commita285acbbef997d223de819e960d55724f52757d4 (patch)
treeef127980428fdae4cf398af81751d17a3017a789 /src/mesa/glapi/gl_XML.py
parent70d2f152f8e312a6c51dd4547d39b09284b2c0de (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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py
index f984d5f87f..538756ea0c 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)