diff options
author | Dave Airlie <[email protected]> | 2011-01-31 13:03:10 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-01-31 13:06:17 +1000 |
commit | 065c8696e7b8290f9361ae88b8a7d99be9e2d0ef (patch) | |
tree | 0a9786eda4c053b21f9eadf1885918eaebc34f67 /src/gallium/drivers/r600/r600_texture.c | |
parent | 5555cd776b970bce020be59193054474a2a63317 (diff) |
r600g: fix regression in cubemap tests since eea1d8199b376f37027c14669e0bdf991a22872d
Although CUBE is a reduction inst, it writes to more than just PV.X
so we need to keep the dst channel.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index 91076269ec7..e45f4a517e0 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -923,7 +923,7 @@ uint32_t r600_translate_texformat(enum pipe_format format, desc->channel[1].size == 10 && desc->channel[2].size == 10 && desc->channel[3].size == 2) { - result = FMT_10_10_10_2; + result = FMT_2_10_10_10; goto out_word4; } goto out_unknown; |