diff options
author | Marek Olšák <[email protected]> | 2016-09-29 01:00:39 +0200 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-03-16 14:14:18 +1100 |
commit | db06e91de205eff036cd6a2d48f41573f6a9535c (patch) | |
tree | 2fb8bb2fe078ecc58e48c912fd8e5230ddb617d4 /src/mesa/main/api_exec.h | |
parent | ef30ce97a6bc0a9a6e625df6964e1cdea0ccee4b (diff) |
Revert "mesa: make _mesa_alloc_dispatch_table() static"
This reverts commit 4009d22b61e76850b1b725f4e491da05c2406fa4.
glthread needs it.
Acked-by: Timothy Arceri <[email protected]>
Acked-by: Marek Olšák <[email protected]>
Tested-by: Dieter Nützel <[email protected]>
Tested-by: Mike Lothian <[email protected]>
Diffstat (limited to 'src/mesa/main/api_exec.h')
-rw-r--r-- | src/mesa/main/api_exec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.h b/src/mesa/main/api_exec.h index 655cb32d0a4..f55f56bda4a 100644 --- a/src/mesa/main/api_exec.h +++ b/src/mesa/main/api_exec.h @@ -30,8 +30,12 @@ extern "C" { #endif +struct _glapi_table; struct gl_context; +extern struct _glapi_table * +_mesa_alloc_dispatch_table(void); + extern void _mesa_initialize_exec_table(struct gl_context *ctx); |