mesa: Make the drivers call a non-code-generated dispatch table setup.

I want to drive the Save dispatch table setup from this same function.

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Eric Anholt
2013-01-17 16:49:57 -08:00
parent ced98f17ef
commit be4b1664fb
14 changed files with 21 additions and 12 deletions

View File

@@ -933,6 +933,13 @@ create_beginend_table(const struct gl_context *ctx)
return table;
}
void
_mesa_initialize_dispatch_tables(struct gl_context *ctx)
{
/* Do the code-generated setup of the exec table in api_exec.c. */
_mesa_initialize_exec_table(ctx);
}
/**
* Initialize a struct gl_context struct (rendering context).
*