summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/api_exec.h
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2015-05-26 11:41:44 -0700
committerIan Romanick <[email protected]>2015-05-26 18:25:41 -0700
commit2b8c51834bcc34a70dec9b470a28c0ef972d6993 (patch)
treeb05724783798eb01762baa631870e74692f6854d /src/mesa/main/api_exec.h
parent8d813d14e1f5c690c6737c6cd6fc01937a7d4246 (diff)
glapi: Encapsulate nop table knowledge in new _mesa_new_nop_table function
Encapsulate the knowledge about how to build the nop table in a new _mesa_new_nop_table function. This makes it easier for dispatch_sanity to keep working now and in the future. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Tested-by: Mark Janes <[email protected]> Cc: 10.6 <[email protected]>
Diffstat (limited to 'src/mesa/main/api_exec.h')
-rw-r--r--src/mesa/main/api_exec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.h b/src/mesa/main/api_exec.h
index 12249fec228..655cb32d0a4 100644
--- a/src/mesa/main/api_exec.h
+++ b/src/mesa/main/api_exec.h
@@ -38,6 +38,9 @@ _mesa_initialize_exec_table(struct gl_context *ctx);
extern void
_mesa_initialize_dispatch_tables(struct gl_context *ctx);
+extern struct _glapi_table *
+_mesa_new_nop_table(unsigned numEntries);
+
#ifdef __cplusplus
} // extern "C"
#endif