mesa: make _mesa_map_function_spec() static

Used only locally.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Emil Velikov 2016-06-07 17:33:39 +01:00 committed by Emil Velikov
parent 390678f27d
commit 3f80c95f35
2 changed files with 3 additions and 6 deletions

View 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) {

View 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);