blob: 6f6be2069c2cc5c22eb6298c39df9d1f7a83c88d [file] [log] [blame]
Ian Romanick66a55482005-06-21 23:42:43 +00001#!/usr/bin/env python
Ian Romanick73f59b02004-05-18 18:33:40 +00002
Ian Romanick66a55482005-06-21 23:42:43 +00003# (C) Copyright IBM Corporation 2004, 2005
Ian Romanick73f59b02004-05-18 18:33:40 +00004# All Rights Reserved.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a
7# copy of this software and associated documentation files (the "Software"),
8# to deal in the Software without restriction, including without limitation
9# on the rights to use, copy, modify, merge, publish, distribute, sub
10# license, and/or sell copies of the Software, and to permit persons to whom
11# the Software is furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice (including the next
14# paragraph) shall be included in all copies or substantial portions of the
15# Software.
16#
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20# IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23# IN THE SOFTWARE.
24#
25# Authors:
26# Ian Romanick <idr@us.ibm.com>
27
Ian Romanick73f59b02004-05-18 18:33:40 +000028import gl_XML
29import license
30import sys, getopt
31
Ian Romanick66a55482005-06-21 23:42:43 +000032class PrintGlOffsets(gl_XML.gl_print_base):
Ian Romanick73f59b02004-05-18 18:33:40 +000033 def __init__(self):
Ian Romanick66a55482005-06-21 23:42:43 +000034 gl_XML.gl_print_base.__init__(self)
35
36 self.name = "gl_offsets.py (from Mesa)"
Ian Romanick16c3c742005-01-28 19:00:54 +000037 self.header_tag = '_GLAPI_OFFSETS_H_'
Ian Romanick73f59b02004-05-18 18:33:40 +000038 self.license = license.bsd_license_template % ( \
39"""Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
40(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
Ian Romanick66a55482005-06-21 23:42:43 +000041 return
Ian Romanick73f59b02004-05-18 18:33:40 +000042
Ian Romanick66a55482005-06-21 23:42:43 +000043 def printBody(self, api):
Ian Romanick1585c232005-07-28 00:29:51 +000044 last_static = 0
Ian Romanick66a55482005-06-21 23:42:43 +000045 for f in api.functionIterateByOffset():
46 print '#define _gloffset_%s %d' % (f.name, f.offset)
Ian Romanick1585c232005-07-28 00:29:51 +000047 if f.offset > last_static:
48 last_static = f.offset
49
50 print '#define _gloffset_FIRST_DYNAMIC %d' % (last_static + 1)
51 return
Ian Romanick73f59b02004-05-18 18:33:40 +000052
Ian Romanick73f59b02004-05-18 18:33:40 +000053
54def show_usage():
55 print "Usage: %s [-f input_file_name]" % sys.argv[0]
56 sys.exit(1)
57
58if __name__ == '__main__':
59 file_name = "gl_API.xml"
60
61 try:
62 (args, trail) = getopt.getopt(sys.argv[1:], "f:")
63 except Exception,e:
64 show_usage()
65
66 for (arg,val) in args:
67 if arg == "-f":
68 file_name = val
69
Ian Romanick66a55482005-06-21 23:42:43 +000070 api = gl_XML.parse_GL_API( file_name )
71
72 printer = PrintGlOffsets()
73 printer.Print( api )