Lines Matching refs:func
87 for func in api.functionIterateByOffset():
88 name = func.dispatch_name()
89 self.printFunctionString(func.name)
90 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset))
95 base_offset += len(func.name) + 3
98 for func in api.functionIterateByOffset():
99 for n in func.entry_points:
100 if n != func.name:
101 name = func.dispatch_name()
104 if func.has_different_protocol(n):
105 alt_name = "gl" + func.static_glx_name(n)
106 table.append((base_offset, "gl" + name, alt_name, alt_name, func.offset))
108 table.append((base_offset, "gl" + name, "gl" + name, "NULL", func.offset))
117 for func in api.functionIterateByOffset():
118 for n in func.entry_points:
119 …if (not func.is_static_entry_point(func.name)) or (func.has_different_protocol(n) and not func.is_…
120 …print('%s GLAPIENTRY gl_dispatch_stub_%u(%s);' % (func.return_type, func.offset, func.get_paramete…
125 for func in api.functionIterateByOffset():
126 for n in func.entry_points:
132 % (func.return_type, "gl" + n, func.get_parameter_string(n))