From: Ian Romanick Date: Thu, 12 Jul 2012 20:49:59 +0000 (-0700) Subject: swrast: Remove the 2_3_3_REV framebuffer format X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0398a26097993bbbcc2f418363da00edad5ab5cf;p=mesa.git swrast: Remove the 2_3_3_REV framebuffer format There is no gl_format in Mesa that corresponds to this arrangement, so I have a very hard time believing that this works. Signed-off-by: Ian Romanick Reviewed-by: Eric Anholt Reviewed-by: Brian Paul Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/swrast/swrast.c b/src/mesa/drivers/dri/swrast/swrast.c index 7596973b028..c608bcdc6eb 100644 --- a/src/mesa/drivers/dri/swrast/swrast.c +++ b/src/mesa/drivers/dri/swrast/swrast.c @@ -161,10 +161,6 @@ swrastFillInModes(__DRIscreen *psp, back_buffer_factor = 2; switch (pixel_bits) { - case 8: - fb_format = GL_RGB; - fb_type = GL_UNSIGNED_BYTE_2_3_3_REV; - break; case 16: fb_format = GL_RGB; fb_type = GL_UNSIGNED_SHORT_5_6_5;