Searched defs:func_name (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Additions/common/crOpenGL/
H A DLinux_i386_glxapi_exports.py92 func_name = glx_functions[index] variable
94 print "BEGINPROC_EXPORTED vbox_glX%s" % func_name
102 print "ENDPROC vbox_glX%s" % func_name
H A DSunOS_i386_glxapi_exports.py92 func_name = glx_functions[index] variable
94 print "BEGINPROC_EXPORTED vbox_glX%s" % func_name
100 print "ENDPROC vbox_glX%s" % func_name
/vbox/src/VBox/Additions/common/crOpenGL/passthrough/
H A Dpassthrough.py36 func_name = keys[index] variable
37 print '\t__fillin( %3d, "%s", (SPUGenericFunction) child->dispatch_table.%s );' % (index, func_name, func_name )
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_simpleget.py29 func_name = funcs[index] variable
30 params = apiutil.Parameters(func_name)
31 print 'void SERVER_DISPATCH_APIENTRY crServerDispatch%s( %s )' % ( func_name, apiutil.MakeDeclarationString(params))
52 print '\tcr_server.head_spu->dispatch_table.%s( pname, get_values );' % func_name
/vbox/src/VBox/GuestHost/OpenGL/error/
H A Derror.py30 for func_name in keys:
31 return_type = apiutil.ReturnType(func_name)
32 params = apiutil.Parameters(func_name)
33 print '\nstatic %s ERROR_APIENTRY error%s( %s )' % (return_type, func_name, apiutil.MakeDeclarationString(params ))
38 print '\tcrError( "ERROR SPU: Unsupported function gl%s called!" );' % func_name
45 func_name = keys[index] variable
46 print '\t{ "%s", (SPUGenericFunction) error%s },' % (func_name, func_name )
/vbox/src/VBox/Additions/common/crOpenGL/pack/
H A Dpack.py38 for func_name in keys:
39 if ("get" in apiutil.Properties(func_name) or
40 apiutil.FindSpecial( "packspu", func_name ) or
41 apiutil.FindSpecial( "packspu_flush", func_name ) or
42 apiutil.FindSpecial( "packspu_vertex", func_name )):
43 pack_specials.append( func_name )
48 func_name = keys[index] variable
49 if apiutil.FindSpecial( "packspu_unimplemented", func_name ):
51 if func_name in pack_specials:
52 print '\t__fillin( %3d, "%s", (SPUGenericFunction) packspu_%s );' % (index, func_name, func_nam
[all...]
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpacker_bbox.py91 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
273 func_name = 'Vertex%d%s' % (num_coords, argtype) variable
282 func_name = 'VertexAttrib%d%s' % (num_coords, argtype) variable
[all...]

Completed in 671 milliseconds