r600g: pad the DMA CS to a multiple of 8 dwords
[mesa.git] / src / mesa / main / remap.h
index a2a55f615d594355e80d9768c12b2a3a40c06856..fa317248788c189ca6be8cd42c4212fc9228da38 100644 (file)
@@ -59,83 +59,39 @@ _mesa_map_function_array(const struct gl_function_remap *func_array);
 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);
-
 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 *
+static inline const char *
 _mesa_get_function_spec(int func_index)
 {
    return NULL;
 }
 
-static INLINE int
+static inline int
 _mesa_map_function_spec(const char *spec)
 {
    return -1;
 }
 
-static INLINE void
+static inline void
 _mesa_map_function_array(const struct gl_function_remap *func_array)
 {
 }
 
-static INLINE void
+static inline void
 _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,
-                         const struct gl_function_pool_remap *remap)
-{
-}
-
-static INLINE void
+static inline void
 _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 */