Lines Matching defs:table
854 * Create a new API dispatch table in which all entries point to the
862 struct _glapi_table *table;
865 table = malloc(numEntries * sizeof(_glapi_proc));
866 if (table) {
867 _glapi_proc *entry = (_glapi_proc *) table;
874 table = _glapi_new_nop_table(numEntries);
878 _glapi_proc *entry = (_glapi_proc *) table;
883 return table;
888 * Allocate and initialize a new dispatch table. The table will be
895 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
902 struct _glapi_table *table = _mesa_new_nop_table(numEntries, glthread);
905 if (table) {
922 SET_Flush(table, nop_glFlush);
930 return table;
936 /* Do the code-generated setup of the exec table in api_exec_init.c. */
971 * \param driverFunctions table of device driver functions for this context
1618 * Get context's current API dispatch table.