From: John Kåre Alsaker Date: Sun, 23 Sep 2012 11:44:09 +0000 (+0200) Subject: svga: Remove wierd code which forces non-sRGB formats. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6c53ec1ef279bd346ec8b59f44520ca79f886c93;p=mesa.git svga: Remove wierd code which forces non-sRGB formats. Signed-off-by: Brian Paul --- diff --git a/src/gallium/drivers/svga/svga_resource_texture.c b/src/gallium/drivers/svga/svga_resource_texture.c index 9830e79d106..97ec7eeea7e 100644 --- a/src/gallium/drivers/svga/svga_resource_texture.c +++ b/src/gallium/drivers/svga/svga_resource_texture.c @@ -540,14 +540,6 @@ svga_texture_from_handle(struct pipe_screen *screen, pipe_reference_init(&tex->b.b.reference, 1); tex->b.b.screen = screen; - if (format == SVGA3D_X8R8G8B8) - tex->b.b.format = PIPE_FORMAT_B8G8R8X8_UNORM; - else if (format == SVGA3D_A8R8G8B8) - tex->b.b.format = PIPE_FORMAT_B8G8R8A8_UNORM; - else { - /* ?? */ - } - SVGA_DBG(DEBUG_DMA, "wrap surface sid %p\n", srf); tex->key.cachable = 0;