fxt1_decode_1() should not be static
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 30 Nov 2005 14:47:34 +0000 (14:47 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 30 Nov 2005 14:47:34 +0000 (14:47 +0000)
src/mesa/main/texcompress_fxt1.c

index 58d4298..44b450f 100644 (file)
@@ -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, GLchan *rgba);
 
@@ -1679,7 +1679,7 @@ fxt1_decode_1ALPHA (const GLubyte *code, GLint t, GLchan *rgba)
 }
 
 
-static void
+void
 fxt1_decode_1 (const void *texture, GLint stride, /* in pixels */
                GLint i, GLint j, GLchan *rgba)
 {