Lines Matching defs:func_name
91 def PrintFunction( func_name, extSuffix, num_coords, argtype,
97 Note: func_name should not have an ARB suffix.
110 if func_name[0:12] == "VertexAttrib":
142 func_name = 'VertexAttrib%d%sv' % (num_coords, argtype)
144 func_name = 'Vertex%d%sv' % (num_coords,argtype)
146 params = apiutil.Parameters(func_name + extSuffix)
148 print 'void PACK_APIENTRY crPack%sBBOX%s%s( %s )' % (func_name + extSuffix, countSuffix,
221 fname = func_name + extSuffix
224 opcode = apiutil.OpcodeName( func_name[:-1] + extSuffix )
226 opcode = apiutil.OpcodeName( func_name + extSuffix )
247 print "\tWRITE_OPCODE( pc, %s );" % apiutil.OpcodeName( func_name + "ARB" )
249 print "\tWRITE_OPCODE( pc, %s );" % apiutil.OpcodeName( func_name[:-1] + "ARB" )
251 print "\tWRITE_OPCODE( pc, %s );" % apiutil.OpcodeName( func_name[:-1] )
259 print "\tWRITE_OPCODE( pc, %s );" % apiutil.OpcodeName( func_name + "ARB" )
261 print "\tWRITE_OPCODE( pc, %s );" % apiutil.OpcodeName( func_name )
273 func_name = 'Vertex%d%s' % (num_coords, argtype)
277 PrintFunction( func_name, "", num_coords, argtype, swap,
282 func_name = 'VertexAttrib%d%s' % (num_coords, argtype)
286 PrintFunction( func_name, "ARB", num_coords, argtype, swap,
302 for (func_name, argtype) in moreFuncs:
307 PrintFunction( func_name, "ARB", num_coords, argtype, swap, count, vec )
311 for (func_name, argtype) in moreFuncs:
316 PrintFunction( func_name, "ARB", num_coords, argtype, swap, count, vec )