diff options
author | Chia-I Wu <[email protected]> | 2013-06-07 14:18:59 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-07 15:37:35 +0800 |
commit | cde49c71a31dc14badeb107ec6ae4e232f0e0ebf (patch) | |
tree | 2df6df1564413cc5cb74516e68d9fc5f48aeb898 /src/gallium/drivers | |
parent | f8df73f41c5f4e461dc7de8cd3a7b32b04dfbf2e (diff) |
ilo: add support for TEX2/TXB2/TXL2 in fs
They were already supported, just being rejected in the TGSI translator.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/ilo/shader/toy_tgsi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/ilo/shader/toy_tgsi.c b/src/gallium/drivers/ilo/shader/toy_tgsi.c index f697d1d2ae5..045d279ef8c 100644 --- a/src/gallium/drivers/ilo/shader/toy_tgsi.c +++ b/src/gallium/drivers/ilo/shader/toy_tgsi.c @@ -1619,9 +1619,9 @@ static const toy_tgsi_translate soa_translate_table[TGSI_OPCODE_LAST] = { [TGSI_OPCODE_ATOMUMAX] = soa_unsupported, [TGSI_OPCODE_ATOMIMIN] = soa_unsupported, [TGSI_OPCODE_ATOMIMAX] = soa_unsupported, - [TGSI_OPCODE_TEX2] = soa_unsupported, - [TGSI_OPCODE_TXB2] = soa_unsupported, - [TGSI_OPCODE_TXL2] = soa_unsupported, + [TGSI_OPCODE_TEX2] = soa_passthrough, + [TGSI_OPCODE_TXB2] = soa_passthrough, + [TGSI_OPCODE_TXL2] = soa_passthrough, }; static bool |