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_SPARC_asm.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/mesa/glapi/gl_SPARC_asm.py') diff --git a/src/mesa/glapi/gl_SPARC_asm.py b/src/mesa/glapi/gl_SPARC_asm.py index 1368e24a08..14db678210 100644 --- a/src/mesa/glapi/gl_SPARC_asm.py +++ b/src/mesa/glapi/gl_SPARC_asm.py @@ -82,7 +82,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) @@ -94,7 +94,7 @@ class PrintGenericStubs(gl_XML.gl_print_base): print '' 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) @@ -108,9 +108,9 @@ class PrintGenericStubs(gl_XML.gl_print_base): for f in api.functionIterateByOffset(): - if f.static_dispatch: - for n in f.entry_points: - if n != f.name: + for n in f.entry_points: + if n != f.name: + if f.is_static_entry_point(n): print '\t.globl gl%s ; .type gl%s,#function ; gl%s = gl%s' % (n, n, n, f.name) return -- cgit v1.2.3