summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/tgsi/tgsi_exec.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-03-10 10:15:29 +0100
committerMichal Krol <michal@vmware.com>2009-03-10 10:27:24 +0100
commitfb88908f5cea2677617499307768ead138510491 (patch)
tree1a5ed5169dce6db7a2b3e73c66719552783d885a /src/gallium/auxiliary/tgsi/tgsi_exec.c
parent56603044e99cefd31b8ec2d15fa3f4e72a05b62b (diff)
tgsi: Consider INDEX, NEGATE, MULTIPLYMATRIX opcodes for removal.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index fe2804be76..c5537a3bb4 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -2146,10 +2146,12 @@ exec_instruction(
break;
case TGSI_OPCODE_INDEX:
+ /* XXX: considered for removal */
assert (0);
break;
case TGSI_OPCODE_NEGATE:
+ /* XXX: considered for removal */
assert (0);
break;
@@ -2255,6 +2257,7 @@ exec_instruction(
break;
case TGSI_OPCODE_MULTIPLYMATRIX:
+ /* XXX: considered for removal */
assert (0);
break;