diff options
author | Kristian Høgsberg <[email protected]> | 2010-04-22 20:26:51 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-04-27 19:27:49 -0400 |
commit | ea0c7e71638a4a72a4eae962e6cc471bd33a5605 (patch) | |
tree | 5229269112efc701323ffe1ed500d22583bea63b /src/mesa/main/remap.h | |
parent | 1741ddb747ca0be284315adb4b6fe67ddf292d03 (diff) |
mesa: Move api_exec_es*.c into mesa/main
This requires renaming a few functions to have unique names so that
they can all live within the same driver.
Diffstat (limited to 'src/mesa/main/remap.h')
-rw-r--r-- | src/mesa/main/remap.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/mesa/main/remap.h b/src/mesa/main/remap.h index dda1a6be3a9..7afdee36f5b 100644 --- a/src/mesa/main/remap.h +++ b/src/mesa/main/remap.h @@ -59,6 +59,12 @@ extern void _mesa_map_static_functions(void); extern void +_mesa_map_static_functions_es1(void); + +extern void +_mesa_map_static_functions_es2(void); + +extern void _mesa_do_init_remap_table(const char *pool, int size, const struct gl_function_pool_remap *remap); @@ -66,6 +72,12 @@ _mesa_do_init_remap_table(const char *pool, extern void _mesa_init_remap_table(void); +extern void +_mesa_init_remap_table_es1(void); + +extern void +_mesa_init_remap_table_es2(void); + #else /* FEATURE_remap_table */ static INLINE const char * @@ -90,6 +102,17 @@ _mesa_map_static_functions(void) { } + +static INLINE void +_mesa_map_static_functions_es1(void) +{ +} + +static INLINE void +_mesa_map_static_functions_es2(void) +{ +} + static INLINE void _mesa_do_init_remap_table(const char *pool, int size, @@ -102,6 +125,16 @@ _mesa_init_remap_table(void) { } +static INLINE void +_mesa_init_remap_table_es1(void) +{ +} + +static INLINE void +_mesa_init_remap_table_es2(void) +{ +} + #endif /* FEATURE_remap_table */ |