diff options
author | Marek Olšák <[email protected]> | 2010-12-22 02:22:09 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-12-22 03:39:37 +0100 |
commit | cb4f367b268b6fbedc6673b2c6e51d107e929370 (patch) | |
tree | db6942fa8461c2df607ba2af6f9dc3ecf5b669c7 | |
parent | 2a95542088fbada4ffe5bdd2da90b215cb6a5003 (diff) |
r300g: fix precision issues with B10G10R10A2
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 2 |
1 files changed, 2 insertions, 0 deletions
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. */ |