mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
mesa/dxtn: make function pointers static
These aren't used outside thie file from what I can see. Reviewed-by: Matt Turner <mattst88@gmail.com> Acked-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
36639ec6e9
commit
7b10d81fc8
1 changed files with 4 additions and 4 deletions
|
|
@ -91,10 +91,10 @@ nonlinear_to_linear(GLubyte cs8)
|
|||
|
||||
typedef void (*dxtFetchTexelFuncExt)( GLint srcRowstride, GLubyte *pixdata, GLint col, GLint row, GLvoid *texelOut );
|
||||
|
||||
dxtFetchTexelFuncExt fetch_ext_rgb_dxt1 = NULL;
|
||||
dxtFetchTexelFuncExt fetch_ext_rgba_dxt1 = NULL;
|
||||
dxtFetchTexelFuncExt fetch_ext_rgba_dxt3 = NULL;
|
||||
dxtFetchTexelFuncExt fetch_ext_rgba_dxt5 = NULL;
|
||||
static dxtFetchTexelFuncExt fetch_ext_rgb_dxt1 = NULL;
|
||||
static dxtFetchTexelFuncExt fetch_ext_rgba_dxt1 = NULL;
|
||||
static dxtFetchTexelFuncExt fetch_ext_rgba_dxt3 = NULL;
|
||||
static dxtFetchTexelFuncExt fetch_ext_rgba_dxt5 = NULL;
|
||||
|
||||
typedef void (*dxtCompressTexFuncExt)(GLint srccomps, GLint width,
|
||||
GLint height, const GLubyte *srcPixData,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue