diff options
author | Ian Romanick <[email protected]> | 2005-04-18 19:42:23 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-04-18 19:42:23 +0000 |
commit | 93d2d54e7a11cf1a01c976ede37db2320ccc2dff (patch) | |
tree | 7918b8232796a7480f63e9b57dfd34f87f3a6327 /src/mesa/glapi/glX_proto_send.py | |
parent | 8ea22650bd2f791f72b9b2970b88236d59234d61 (diff) |
Refactor a bunch of common code from the "leaf" scripts to a new functions,
parse_GL_API, in gl_XML.py.
Diffstat (limited to 'src/mesa/glapi/glX_proto_send.py')
-rw-r--r-- | src/mesa/glapi/glX_proto_send.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/mesa/glapi/glX_proto_send.py b/src/mesa/glapi/glX_proto_send.py index d78e07ee5e9..1ac46c3b4cd 100644 --- a/src/mesa/glapi/glX_proto_send.py +++ b/src/mesa/glapi/glX_proto_send.py @@ -25,10 +25,6 @@ # Authors: # Ian Romanick <[email protected]> -from xml.sax import saxutils -from xml.sax import make_parser -from xml.sax.handler import feature_namespaces - import gl_XML import glX_XML import license @@ -889,13 +885,6 @@ if __name__ == '__main__': else: show_usage() - parser = make_parser() - parser.setFeature(feature_namespaces, 1) - parser.setContentHandler(dh) - - f = open(file_name) dh.debug = debug - dh.printHeader() - parser.parse(f) - dh.printFooter() + gl_XML.parse_GL_API( dh, file_name ) |