From: Brian Paul Date: Sat, 10 Sep 2005 16:20:47 +0000 (+0000) Subject: make some vars static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f15b499cfd575ad8ace74d6b9047ecb1266bf7ef;p=mesa.git make some vars static --- diff --git a/src/mesa/main/texcompress_s3tc.c b/src/mesa/main/texcompress_s3tc.c index 44ab9e2acad..f4d77f373fd 100644 --- a/src/mesa/main/texcompress_s3tc.c +++ b/src/mesa/main/texcompress_s3tc.c @@ -69,10 +69,14 @@ dxtFetchTexelFuncExt fetch_ext_rgba_dxt1 = NULL; dxtFetchTexelFuncExt fetch_ext_rgba_dxt3 = NULL; dxtFetchTexelFuncExt fetch_ext_rgba_dxt5 = NULL; -typedef void (*dxtCompressTexFuncExt)(GLint srccomps, GLint width, GLint height, const GLubyte *srcPixData, GLenum destformat, GLubyte *dest, GLint dstRowStride); -dxtCompressTexFuncExt ext_tx_compress_dxtn = NULL; +typedef void (*dxtCompressTexFuncExt)(GLint srccomps, GLint width, + GLint height, const GLchan *srcPixData, + GLenum destformat, GLubyte *dest, + GLint dstRowStride); +static dxtCompressTexFuncExt ext_tx_compress_dxtn = NULL; + +static void *dxtlibhandle = NULL; -void *dxtlibhandle = NULL; void _mesa_init_texture_s3tc( GLcontext *ctx )