3 # (C) Copyright IBM Corporation 2004, 2005
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:
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
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
26 # Ian Romanick <idr@us.ibm.com>
28 import gl_XML
, glX_XML
32 class PrintGlOffsets(gl_XML
.gl_print_base
):
33 def __init__(self
, es
=False):
34 gl_XML
.gl_print_base
.__init
__(self
)
36 self
.name
= "gl_apitemp.py (from Mesa)"
37 self
.license
= license
.bsd_license_template
% ( \
38 """Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
39 (C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
43 self
.undef_list
.append( "KEYWORD1" )
44 self
.undef_list
.append( "KEYWORD1_ALT" )
45 self
.undef_list
.append( "KEYWORD2" )
46 self
.undef_list
.append( "NAME" )
47 self
.undef_list
.append( "DISPATCH" )
48 self
.undef_list
.append( "RETURN_DISPATCH" )
49 self
.undef_list
.append( "DISPATCH_TABLE_NAME" )
50 self
.undef_list
.append( "UNUSED_TABLE_NAME" )
51 self
.undef_list
.append( "TABLE_ENTRY" )
54 def printFunction(self
, f
, name
):
60 if f
.is_static_entry_point(name
):
63 keyword
= "KEYWORD1_ALT"
65 n
= f
.static_name(name
)
67 for p
in f
.parameterIterator():
72 cast
= "(const void *) "
76 t_string
= t_string
+ comma
+ p
.format_string()
77 p_string
= p_string
+ comma
+ p
.name
78 o_string
= o_string
+ comma
+ cast
+ p
.name
82 if f
.return_type
!= 'void':
83 dispatch
= "RETURN_DISPATCH"
88 if not f
.is_static_entry_point(name
):
91 cat
, num
= api
.get_category_for_name(name
)
92 if (cat
.startswith("es") or cat
.startswith("GL_OES")):
95 print '%s %s KEYWORD2 NAME(%s)(%s);' % (keyword
, f
.return_type
, n
, f
.get_parameter_string(name
))
98 print '%s %s KEYWORD2 NAME(%s)(%s)' % (keyword
, f
.return_type
, n
, f
.get_parameter_string(name
))
101 print ' %s(%s, (), (F, "gl%s();\\n"));' \
102 % (dispatch
, f
.name
, name
)
104 print ' %s(%s, (%s), (F, "gl%s(%s);\\n", %s));' \
105 % (dispatch
, f
.name
, p_string
, name
, t_string
, o_string
)
110 def printRealHeader(self
):
112 self
.printVisibility( "HIDDEN", "hidden" )
115 * This file is a template which generates the OpenGL API entry point
116 * functions. It should be included by a .c file which first defines
117 * the following macros:
118 * KEYWORD1 - usually nothing, but might be __declspec(dllexport) on Win32
119 * KEYWORD2 - usually nothing, but might be __stdcall on Win32
120 * NAME(n) - builds the final function name (usually add "gl" prefix)
121 * DISPATCH(func, args, msg) - code to do dispatch of named function.
122 * msg is a printf-style debug message.
123 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
125 * Here is an example which generates the usual OpenGL functions:
128 * #define NAME(func) gl##func
129 * #define DISPATCH(func, args, msg) \\
130 * struct _glapi_table *dispatch = CurrentDispatch; \\
131 * (*dispatch->func) args
132 * #define RETURN DISPATCH(func, args, msg) \\
133 * struct _glapi_table *dispatch = CurrentDispatch; \\
134 * return (*dispatch->func) args
145 #define KEYWORD1_ALT HIDDEN
153 #error DISPATCH must be defined
156 #ifndef RETURN_DISPATCH
157 #error RETURN_DISPATCH must be defined
165 def printInitDispatch(self
, api
):
167 #endif /* defined( NAME ) */
170 * This is how a dispatch table can be initialized with all the functions
171 * we generated above.
173 #ifdef DISPATCH_TABLE_NAME
176 #error TABLE_ENTRY must be defined
179 #ifdef _GLAPI_SKIP_NORMAL_ENTRY_POINTS
180 #error _GLAPI_SKIP_NORMAL_ENTRY_POINTS must not be defined
183 _glapi_proc DISPATCH_TABLE_NAME[] = {"""
184 for f
in api
.functionIterateByOffset():
185 print ' TABLE_ENTRY(%s),' % (f
.dispatch_name())
187 print ' /* A whole bunch of no-op functions. These might be called'
188 print ' * when someone tries to call a dynamically-registered'
189 print ' * extension function without a current rendering context.'
191 for i
in range(1, 100):
192 print ' TABLE_ENTRY(Unused),'
195 print '#endif /* DISPATCH_TABLE_NAME */'
200 def printAliasedTable(self
, api
):
203 * This is just used to silence compiler warnings.
204 * We list the functions which are not otherwise used.
206 #ifdef UNUSED_TABLE_NAME
207 _glapi_proc UNUSED_TABLE_NAME[] = {"""
211 for f
in api
.functionIterateByOffset():
212 normal_ents
, proto_ents
= self
.classifyEntryPoints(f
)
215 if f
.name
in normal_ents
:
216 normal_ents
.remove(f
.name
)
217 elif f
.name
in proto_ents
:
218 proto_ents
.remove(f
.name
)
220 normal_ents
= [f
.static_name(ent
) for ent
in normal_ents
]
221 proto_ents
= [f
.static_name(ent
) for ent
in proto_ents
]
223 normal_entries
.extend(normal_ents
)
224 proto_entries
.extend(proto_ents
)
226 print '#ifndef _GLAPI_SKIP_NORMAL_ENTRY_POINTS'
227 for ent
in normal_entries
:
228 print ' TABLE_ENTRY(%s),' % (ent
)
229 print '#endif /* _GLAPI_SKIP_NORMAL_ENTRY_POINTS */'
230 print '#ifndef _GLAPI_SKIP_PROTO_ENTRY_POINTS'
231 for ent
in proto_entries
:
232 print ' TABLE_ENTRY(%s),' % (ent
)
233 print '#endif /* _GLAPI_SKIP_PROTO_ENTRY_POINTS */'
236 print '#endif /*UNUSED_TABLE_NAME*/'
241 def classifyEntryPoints(self
, func
):
246 # classify the entry points
247 for name
in func
.entry_points
:
248 if func
.has_different_protocol(name
):
249 if func
.is_static_entry_point(name
):
250 proto_names
.append(name
)
252 proto_stubs
.append(name
)
254 if func
.is_static_entry_point(name
):
255 normal_names
.append(name
)
257 normal_stubs
.append(name
)
258 # there can be at most one stub for a function
260 normal_names
.append(normal_stubs
[0])
262 proto_names
.append(proto_stubs
[0])
264 return (normal_names
, proto_names
)
266 def printBody(self
, api
):
267 normal_entry_points
= []
268 proto_entry_points
= []
269 for func
in api
.functionIterateByOffset():
270 normal_ents
, proto_ents
= self
.classifyEntryPoints(func
)
271 normal_entry_points
.append((func
, normal_ents
))
272 proto_entry_points
.append((func
, proto_ents
))
274 print '#ifndef _GLAPI_SKIP_NORMAL_ENTRY_POINTS'
276 for func
, ents
in normal_entry_points
:
278 self
.printFunction(func
, ent
)
280 print '#endif /* _GLAPI_SKIP_NORMAL_ENTRY_POINTS */'
282 print '/* these entry points might require different protocols */'
283 print '#ifndef _GLAPI_SKIP_PROTO_ENTRY_POINTS'
285 for func
, ents
in proto_entry_points
:
287 self
.printFunction(func
, ent
)
289 print '#endif /* _GLAPI_SKIP_PROTO_ENTRY_POINTS */'
292 self
.printInitDispatch(api
)
293 self
.printAliasedTable(api
)
298 print "Usage: %s [-f input_file_name] [-c]" % sys
.argv
[0]
299 print "-c Enable compatibility with OpenGL ES."
302 if __name__
== '__main__':
303 file_name
= "gl_API.xml"
306 (args
, trail
) = getopt
.getopt(sys
.argv
[1:], "f:c")
311 for (arg
,val
) in args
:
317 api
= gl_XML
.parse_GL_API(file_name
, glX_XML
.glx_item_factory())
319 printer
= PrintGlOffsets(es
)