From: Brian Paul Date: Mon, 5 Oct 2009 22:52:26 +0000 (-0600) Subject: mesa: make _mesa_get_texel_fetch_func() static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbbf55fa8419549debbba9ac6dc011b2c18ef24c;p=mesa.git mesa: make _mesa_get_texel_fetch_func() static --- diff --git a/src/mesa/main/texfetch.c b/src/mesa/main/texfetch.c index 3428f705be8..6b7db584f81 100644 --- a/src/mesa/main/texfetch.c +++ b/src/mesa/main/texfetch.c @@ -522,7 +522,7 @@ texfetch_funcs[MESA_FORMAT_COUNT] = }; -FetchTexelFuncF +static FetchTexelFuncF _mesa_get_texel_fetch_func(gl_format format, GLuint dims) { FetchTexelFuncF f; diff --git a/src/mesa/main/texfetch.h b/src/mesa/main/texfetch.h index a9be530a06d..ef13bf27fec 100644 --- a/src/mesa/main/texfetch.h +++ b/src/mesa/main/texfetch.h @@ -31,9 +31,6 @@ #include "formats.h" -extern FetchTexelFuncF -_mesa_get_texel_fetch_func(gl_format format, GLuint dims); - extern StoreTexelFunc _mesa_get_texel_store_func(gl_format format);