From 2719b54f532d12fe860deab12ba59e2f04ba6a7e Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Wed, 15 Dec 2004 22:57:59 +0000 Subject: fxt1_decode_1() needs to be non-static for the tdfx and glide drivers. --- src/mesa/main/texcompress_fxt1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/texcompress_fxt1.c b/src/mesa/main/texcompress_fxt1.c index 57af65299d..0cd122fc89 100644 --- a/src/mesa/main/texcompress_fxt1.c +++ b/src/mesa/main/texcompress_fxt1.c @@ -45,7 +45,7 @@ fxt1_encode (GLuint width, GLuint height, GLint comps, const void *source, GLint srcRowStride, void *dest, GLint destRowStride); -static void +void fxt1_decode_1 (const void *texture, GLint stride, GLint i, GLint j, GLubyte *rgba); @@ -1635,7 +1635,7 @@ fxt1_decode_1ALPHA (GLubyte *code, GLint t, GLubyte *rgba) } -static void +void fxt1_decode_1 (const void *texture, GLint stride, /* in pixels */ GLint i, GLint j, GLubyte *rgba) { -- cgit v1.2.3