summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-01-03 21:13:47 +0100
committerMichal Krol <michal@vmware.com>2010-01-03 21:13:47 +0100
commit5a3ad6d0ffa2458968b40e858f78c783a1309c24 (patch)
tree89cbaedcfe1d3a5a8fa48860eddf4309515af7db
parent90a3df313cb4fc15951caa55823d12953887ae69 (diff)
downloadmesa-gallium-integer-opcodes.tar.gz
tgsi: Treat MOV source operand as FLOAT so modifiers works as expected.gallium-integer-opcodes
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.c2
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 6019509af7d..fd58fec9e7b 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: