Home | History | Annotate | Download | only in command_buffer

Lines Matching defs:Function

1177 # Must match function names specified in "cmd_buffer_functions.txt".
1181 # decoder_func: defines which function to call in the decoder to execute the
1184 # gl_test_func: GL function that is expected to be called when testing.
1186 # them based on the GL function arguments.
1189 # gen_cmd: Whether or not this function geneates a command. Default = True.
1191 # function. The default is if there is exactly 1 pointer argument
1192 # in the GL function an immediate command is generated.
1204 # gen_func: Name of function that generates GL resource for corresponding
1205 # bind function.
1206 # states: array of states that get set by this function corresponding to
1208 # state_flag: name of flag that is set to true when function is called.
1209 # no_gl: no GL function is called.
1217 # corresponding function. eg. TexParameteriv -> TexParameteri
2628 """This class emits code for a particular type of function."""
2636 """Add or adjust anything type specific for this function."""
2641 """Adds an immediate version of a function."""
2649 """Adds a bucket version of a function."""
2656 """Writes a structure that matches the arguments to a function."""
3118 """Writes the SetHeader function for the immediate version of a cmd."""
3125 """Writes the Init function for the immediate version of a command."""
3129 """Writes the Set function for the immediate version of a command."""
3469 """Add or adjust anything type specific for this function."""
5700 """Holds info about a function."""
5711 """A class that represents a function argument."""
6034 """A class that represents an immediate argument to a function.
6073 """A class that represents an bucket argument to a function."""
6106 """A class that represents a pointer argument to a function."""
6229 """A class that represents a resource id argument to a function."""
6249 """Represents a resource id argument to a bind function."""
6271 """Represents a resource id argument to a function that can be zero."""
6298 class Function(object):
6299 """A class that represents a function."""
6318 function is a certain type."""
6322 """Calls the init function for the type handler."""
6326 """Returns a value from the function info for this function."""
6332 """Gets a valid arg from the function info if one exists."""
6356 """Gets the function to call to execute GL for this command."""
6372 """Adds a cmd argument to this function."""
6376 """Gets the command args for this function."""
6380 """Clears the command args for this function."""
6384 """Gets the init args for this function."""
6388 """Gets the original arguments to this function."""
6392 """Gets the last original argument to this function."""
6454 """Writes validation code for the function."""
6472 """Writes the ComputeSize function for the command."""
6480 """Writes the cmd's SetHeader function."""
6487 """Writes the cmd's Init function."""
6497 """Writes the cmd's Set function."""
6574 """A class that represents a function."""
6605 class ImmediateFunction(Function):
6606 """A class that represnets an immediate function command."""
6627 Function.__init__(
6641 """Overridden from Function"""
6646 """Overridden from Function"""
6650 """Overridden from Function"""
6658 """Overridden from Function"""
6662 """Overridden from Function"""
6666 """Overridden from Function"""
6670 """Overridden from Function"""
6674 """Overridden from Function"""
6678 """Overridden from Function"""
6682 """Overridden from Function"""
6686 """Overridden from Function"""
6690 class BucketFunction(Function):
6691 """A class that represnets a bucket version of a function command."""
6712 Function.__init__(
6725 # """Overridden from Function"""
6729 """Overridden from Function"""
6734 """Overridden from Function"""
6738 """Overridden from Function"""
6845 """Adds a function."""
6858 """Gets a type info for the given function name."""
6890 """Parses a function arg string."""
6935 f = Function(func_name, func_name, func_info, return_type, args,
7715 """This is the main function."""