mesa: remove some color index code
authorBrian Paul <brianp@vmware.com>
Wed, 5 May 2010 03:54:56 +0000 (21:54 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 5 May 2010 03:59:54 +0000 (21:59 -0600)
src/mesa/main/renderbuffer.c

index 135fb5d8781893d38434675867e8028da189ff01..b0e147604a663ef428ec5adf8ffc57cf043bb050 100644 (file)
 #include "renderbuffer.h"
 
 
-/* 32-bit color index format.  Not a public format. */
-#define COLOR_INDEX32 0x424243
-
-
 /*
  * Routines for get/put values in common buffer formats follow.
  * Someday add support for arbitrary row stride to make them more
@@ -1089,21 +1085,6 @@ _mesa_soft_renderbuffer_storage(GLcontext *ctx, struct gl_renderbuffer *rb,
       rb->PutMonoValues = put_mono_values_uint;
       pixelSize = sizeof(GLuint);
       break;
-   case GL_COLOR_INDEX8_EXT:
-   case GL_COLOR_INDEX16_EXT:
-   case COLOR_INDEX32:
-      rb->Format = MESA_FORMAT_CI8;
-      rb->DataType = GL_UNSIGNED_BYTE;
-      rb->GetPointer = get_pointer_ubyte;
-      rb->GetRow = get_row_ubyte;
-      rb->GetValues = get_values_ubyte;
-      rb->PutRow = put_row_ubyte;
-      rb->PutRowRGB = NULL;
-      rb->PutMonoRow = put_mono_row_ubyte;
-      rb->PutValues = put_values_ubyte;
-      rb->PutMonoValues = put_mono_values_ubyte;
-      pixelSize = sizeof(GLubyte);
-      break;
    default:
       _mesa_problem(ctx, "Bad internalFormat in _mesa_soft_renderbuffer_storage");
       return GL_FALSE;