diff options
author | Michal Krol <michal@vmware.com> | 2010-01-03 21:13:47 +0100 |
---|---|---|
committer | Michal Krol <michal@vmware.com> | 2010-01-03 21:13:47 +0100 |
commit | 5a3ad6d0ffa2458968b40e858f78c783a1309c24 (patch) | |
tree | 89cbaedcfe1d3a5a8fa48860eddf4309515af7db | |
parent | 90a3df313cb4fc15951caa55823d12953887ae69 (diff) |
tgsi: Treat MOV source operand as FLOAT so modifiers works as expected.gallium-integer-opcodes
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 6019509af7..fd58fec9e7 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -2164,7 +2164,7 @@ exec_instruction( break; case TGSI_OPCODE_MOV: - exec_vector_unary(mach, inst, micro_mov, TGSI_EXEC_DATA_UINT, TGSI_EXEC_DATA_UINT); + exec_vector_unary(mach, inst, micro_mov, TGSI_EXEC_DATA_UINT, TGSI_EXEC_DATA_FLOAT); break; case TGSI_OPCODE_LIT: |