summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-06-15 02:55:22 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-06-15 02:55:22 +0000
commit8bdd0dc8d0e9c9cb2c71fbdd4c77e982cfc0b350 (patch)
tree9bc4fe765d63a8641f0203f2db0279983581b2e0 /src
parent9d47f3d6b8e8054602a637fad70d4769427df8b4 (diff)
#ifdef-out unused big-endian texel fetch functions
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texformat_tmp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/texformat_tmp.h b/src/mesa/main/texformat_tmp.h
index 8345cfc185..bea9d87a86 100644
--- a/src/mesa/main/texformat_tmp.h
+++ b/src/mesa/main/texformat_tmp.h
@@ -1,4 +1,4 @@
-/* $Id: texformat_tmp.h,v 1.5 2002/06/15 02:38:16 brianp Exp $ */
+/* $Id: texformat_tmp.h,v 1.6 2002/06/15 02:55:22 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -286,6 +286,7 @@ static void FETCH(ci8)( const struct gl_texture_image *texImage,
/* big-endian */
+#if 0
static void FETCH(abgr8888)( const struct gl_texture_image *texImage,
GLint i, GLint j, GLint k, GLvoid *texel )
{
@@ -373,7 +374,7 @@ static void FETCH(bgr233)( const struct gl_texture_image *texImage,
rgba[BCOMP] = UBYTE_TO_CHAN( ((s << 5) & 0xc0) * 255 / 0xc0 );
rgba[ACOMP] = CHAN_MAX;
}
-
+#endif
#undef CHAN_SRC