diff options
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 1f06b53f571..1c917e75a49 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -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). * |