From 7e9737b3704b92865242d7564825cdc57db5c4c9 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Sat, 26 Aug 2006 21:26:55 +0000 Subject: Explicitly store the names for each function that should have a static entry point generated. This allows us to do things like generate a static entry point for glPointParameterfvARB but not for glPointParameterfvSGIS. --- src/mesa/glapi/gl_x86_asm.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/glapi/gl_x86_asm.py') diff --git a/src/mesa/glapi/gl_x86_asm.py b/src/mesa/glapi/gl_x86_asm.py index 3ce8404f8c..2ebe4e8b24 100644 --- a/src/mesa/glapi/gl_x86_asm.py +++ b/src/mesa/glapi/gl_x86_asm.py @@ -197,7 +197,7 @@ class PrintGenericStubs(gl_XML.gl_print_base): def printBody(self, api): for f in api.functionIterateByOffset(): - if f.static_dispatch: + if f.is_static_entry_point(f.name): name = f.name else: name = "_dispatch_stub_%u" % (f.offset) @@ -207,12 +207,12 @@ class PrintGenericStubs(gl_XML.gl_print_base): alt = "%s@%u" % (name, stack) print '\tGL_STUB(%s, _gloffset_%s, %s)' % (name, f.name, alt) - if not f.static_dispatch: + if not f.is_static_entry_point(f.name): print '\tHIDDEN(GL_PREFIX(%s, %s))' % (name, alt) for f in api.functionIterateByOffset(): - if f.static_dispatch: + if f.is_static_entry_point(f.name): name = f.name else: name = "_dispatch_stub_%u" % (f.offset) @@ -221,7 +221,7 @@ class PrintGenericStubs(gl_XML.gl_print_base): alt = "%s@%u" % (name, stack) - if f.static_dispatch: + if f.is_static_entry_point(f.name): for n in f.entry_points: if n != f.name: alt2 = "%s@%u" % (n, stack) -- cgit v1.2.3