Lines Matching +full:shared +full:- +full:glapi
2 # Mesa 3-D graphics library
25 # Chia-I Wu <olv@lunarg.com>
28 # make it possible to import glapi
30 GLAPI = os.path.join(".", os.path.dirname(__file__), "glapi", "gen") variable
31 sys.path.insert(0, GLAPI)
137 """Parse a GLAPI XML file for ABI entries."""
155 # post-process attrs
190 last_slot = entries[-1].slot
214 raise Exception('there are %d invalid entries' % (len(entries) - 1))
255 # non-handcode hidden aliases may share the entry they alias
273 num_static_entries = self.entries[-1].slot + 1
583 self.api_call = 'GLAPI'
617 """Shared GLAPI API Printer"""
628 self.prefix_lib = 'shared'
644 printers = ['glapi', 'es1api', 'es2api', 'shared-glapi']
647 parser.add_option('-p', '--printer', dest='printer',
663 'glapi': GLAPIPrinter,
664 'shared-glapi': SharedGLAPIPrinter,