intel: Remove fallback for glDrawPixels(GL_COLOR_INDEX)

GL_COLOR_INDEX mode is just like other normal formats (that is, not
depth/stencil) and is uploaded fine by TexImage.
This commit is contained in:
Eric Anholt 2008-10-31 13:18:56 -07:00
parent ed478a5fde
commit 018088996a

View file

@ -91,13 +91,6 @@ intel_texture_drawpixels(GLcontext * ctx,
return GL_FALSE;
}
/* Don't even want to think about it */
if (format == GL_COLOR_INDEX) {
if (INTEL_DEBUG & DEBUG_FALLBACKS)
fprintf(stderr, "glDrawPixels() fallback: format == GL_COLOR_INDEX\n");
return GL_FALSE;
}
/* We don't have a way to generate fragments with stencil values which *
* will set the resulting stencil value.
*/