mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 05:40:13 +01:00
glapi: Prevent accidental use of lies w/shared-glapi
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
parent
99fee476a1
commit
d9f899bb93
1 changed files with 6 additions and 0 deletions
|
|
@ -39,14 +39,20 @@ class PrintGlTable(gl_XML.gl_print_base):
|
|||
self.license = license.bsd_license_template % ( \
|
||||
"""Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
|
||||
(C) Copyright IBM Corporation 2004""", "BRIAN PAUL, IBM")
|
||||
self.ifdef_emitted = False;
|
||||
return
|
||||
|
||||
|
||||
def printBody(self, api):
|
||||
for f in api.functionIterateByOffset():
|
||||
if not f.is_abi() and not self.ifdef_emitted:
|
||||
print '#if !defined HAVE_SHARED_GLAPI'
|
||||
self.ifdef_emitted = True
|
||||
arg_string = f.get_parameter_string()
|
||||
print ' %s (GLAPIENTRYP %s)(%s); /* %d */' % (f.return_type, f.name, arg_string, f.offset)
|
||||
|
||||
print '#endif /* !defined HAVE_SHARED_GLAPI */'
|
||||
|
||||
|
||||
def printRealHeader(self):
|
||||
print '#ifndef GLAPIENTRYP'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue