diff options
author | Michal Krol <[email protected]> | 2008-11-26 13:17:25 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-11-26 13:24:33 +0100 |
commit | adf14090fb6e43a25eabb13796d5a9385d8511ea (patch) | |
tree | cb76e42e6bc5663d37dbab3a7f77043c1abc3876 /src/gallium/auxiliary/tgsi/tgsi_exec.c | |
parent | 18a1389077c72717dfbe6ae10793f3329d13b848 (diff) |
tgsi: Implement OPCODE_ARR.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 0fdfb91d393..1981d8b68f9 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -2124,6 +2124,7 @@ exec_instruction( break; case TGSI_OPCODE_ROUND: + case TGSI_OPCODE_ARR: FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) { FETCH( &r[0], 0, chan_index ); micro_rnd( &r[0], &r[0] ); @@ -2424,10 +2425,6 @@ exec_instruction( assert (0); break; - case TGSI_OPCODE_ARR: - assert (0); - break; - case TGSI_OPCODE_BRA: assert (0); break; |