mesa: remove unused function _mesa_map_static_functions()
authorEmil Velikov <emil.velikov@collabora.com>
Tue, 7 Jun 2016 16:33:35 +0000 (17:33 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Mon, 13 Jun 2016 14:31:28 +0000 (15:31 +0100)
Unused as of commit 5a175127f38 ("dri: Remove all extension enabling
utility functions")

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/remap.c
src/mesa/main/remap.h

index 5a95387728512ffa149ff2e0a1e518f7605ff793..7c340265a0395a34e3fe947c2df0ecf9b6fd4434 100644 (file)
@@ -154,26 +154,6 @@ _mesa_map_function_array(const struct gl_function_remap *func_array)
 }
 
 
-/**
- * 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);
-}
-
-
 /**
  * Initialize the remap table.  This is called in one_time_init().
  * The remap table needs to be initialized before calling the
index 9d91b83c1c2b0e28c4a208da82fb11f5ba572907..3d8eab7dfef7243cf7f9b04329d3f17569336189 100644 (file)
@@ -50,9 +50,6 @@ _mesa_map_function_spec(const char *spec);
 extern void
 _mesa_map_function_array(const struct gl_function_remap *func_array);
 
-extern void
-_mesa_map_static_functions(void);
-
 extern void
 _mesa_init_remap_table(void);