diff options
author | Kristian Høgsberg <[email protected]> | 2010-04-22 13:30:03 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-04-27 13:09:31 -0400 |
commit | 1741ddb747ca0be284315adb4b6fe67ddf292d03 (patch) | |
tree | 879e8d81369f9c5aba4af51e00abcf2392262a35 /src/mesa/main/api_exec.c | |
parent | fa416106307dc193e2133aa6a29b9bcfc91f8b39 (diff) |
mesa: Move references to main/remap_helper.h to api_exec.c
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 7b3f3d9ea19..7b6ac63fac4 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -107,6 +107,40 @@ #endif #include "main/dispatch.h" +#define need_MESA_remap_table +#include "main/remap.h" +#include "main/remap_helper.h" + +/* This is shared across all APIs but We define this here since + * desktop GL has the biggest remap table. */ +int driDispatchRemapTable[driDispatchRemapTable_size]; + +/** + * Map the functions which are already static. + * + * When a extension function are incorporated into the ABI, the + * extension suffix is usually stripped. Mapping such functions + * makes sure the alternative names are available. + * + * Note that functions mapped by _mesa_init_remap_table() are + * excluded. + */ +void +_mesa_map_static_functions(void) +{ + /* Remap static functions which have alternative names and are in the ABI. + * This is to be on the safe side. glapi should have defined those names. + */ + _mesa_map_function_array(MESA_alt_functions); +} + +void +_mesa_init_remap_table(void) +{ + _mesa_do_init_remap_table(_mesa_function_pool, + driDispatchRemapTable_size, + MESA_remap_table_functions); +} /** |