summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/tgsi
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-01-03 21:13:47 +0100
committerMichal Krol <michal@vmware.com>2010-01-05 09:28:36 +0100
commitc301fa6fc86b5ab8cc953674d6d21ff28a09e4ad (patch)
tree087809f61bfa35ca826cad408bc6c3a11f977ecf /src/gallium/auxiliary/tgsi
parent72183227039acaa1fdc95ef9faeb98703cb8c28d (diff)
tgsi: Treat MOV source operand as FLOAT so modifiers works as expected.
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-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 defa4e5ca5..00ec3a6ba1 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -2211,7 +2211,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: