aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/glapi/gl_table.py
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2005-05-26 16:34:58 +0000
committerIan Romanick <[email protected]>2005-05-26 16:34:58 +0000
commit497dd3e920bef8f72cd6a85b2551cd309fb7b631 (patch)
tree44d307ea2a5d83c6f08767aa65d356648e801e39 /src/mesa/glapi/gl_table.py
parent249db89b009e64812d4bcec80d0c5a64f1d65aeb (diff)
Minor correction to EXT_framebuffer_object XML. Fix gl_table.py so that it
generates the correct script name in the generated output.
Diffstat (limited to 'src/mesa/glapi/gl_table.py')
-rw-r--r--src/mesa/glapi/gl_table.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/glapi/gl_table.py b/src/mesa/glapi/gl_table.py
index 3b8f1ca411a..7585efa947c 100644
--- a/src/mesa/glapi/gl_table.py
+++ b/src/mesa/glapi/gl_table.py
@@ -30,11 +30,11 @@ import license
import sys, getopt
class PrintGlTable(gl_XML.FilterGLAPISpecBase):
- file_name = "gl_gen_table.xml (from Mesa)"
-
def __init__(self):
gl_XML.FilterGLAPISpecBase.__init__(self)
+
self.header_tag = '_GLAPI_TABLE_H_'
+ self.name = "gl_table.py (from Mesa)"
self.license = license.bsd_license_template % ( \
"""Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")