From: Marek Olšák Date: Wed, 22 Dec 2010 01:22:09 +0000 (+0100) Subject: r300g: fix precision issues with B10G10R10A2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cb4f367b268b6fbedc6673b2c6e51d107e929370;p=mesa.git r300g: fix precision issues with B10G10R10A2 --- diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index 6d86bc282ff..24f1d68f4a7 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -481,6 +481,8 @@ static uint32_t r300_translate_out_fmt(enum pipe_format format) } else { if (desc->channel[i].size == 16) { modifier |= R300_US_OUT_FMT_C4_16; + } else if (desc->channel[i].size == 10) { + modifier |= R300_US_OUT_FMT_C4_10; } else { /* C4_8 seems to be used for the formats whose pixel size * is <= 32 bits. */