mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
make some vars static
This commit is contained in:
parent
392c93e398
commit
f15b499cfd
1 changed files with 7 additions and 3 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue