make some vars static

This commit is contained in:
Brian Paul
2005-09-10 16:20:47 +00:00
parent 392c93e398
commit f15b499cfd

View File

@@ -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 )