mesa: make _mesa_map_function_spec() static
authorEmil Velikov <emil.velikov@collabora.com>
Tue, 7 Jun 2016 16:33:39 +0000 (17:33 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Mon, 13 Jun 2016 14:31:28 +0000 (15:31 +0100)
Used only locally.

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 e76293c7f4eb6256be2a2fb5097ea9a9b7304b00..595d0a1d42135f8c5a46e5a1626b5e623ac266c9 100644 (file)
@@ -61,8 +61,8 @@ int driDispatchRemapTable[driDispatchRemapTable_size];
  * \return the offset of the (re-)mapped function in the dispatch
  *         table, or -1.
  */
-GLint
-_mesa_map_function_spec(const char *spec)
+static GLint
+map_function_spec(const char *spec)
 {
    const char *signature;
    const char *names[MAX_ENTRY_POINTS + 1];
@@ -118,7 +118,7 @@ _mesa_do_init_remap_table(const char *pool,
       assert(i == remap[i].remap_index);
       spec = _mesa_function_pool + remap[i].pool_index;
 
-      offset = _mesa_map_function_spec(spec);
+      offset = map_function_spec(spec);
       /* store the dispatch offset in the remap table */
       driDispatchRemapTable[i] = offset;
       if (offset < 0) {
index bd949a1ef8f8caa3c92db18b2c3a1821a1a7196e..19d2f0daa5a588c7096cb242118e8b270f4d0af8 100644 (file)
@@ -35,9 +35,6 @@ struct gl_function_pool_remap {
 extern int
 driDispatchRemapTable[];
 
-extern int
-_mesa_map_function_spec(const char *spec);
-
 extern void
 _mesa_init_remap_table(void);