diff options
author | Michal Krol <michal@tungstengraphics.com> | 2008-11-26 22:29:49 +0100 |
---|---|---|
committer | Michal Krol <michal@tungstengraphics.com> | 2008-11-26 22:29:49 +0100 |
commit | 158a5f75d8436facfe8163845a942979899213fe (patch) | |
tree | 685ebc223a658f022f1ea7ba99eeb78d1c183070 /src | |
parent | 527e76a7ec7f330bd321fe9632a0fadedbab1d41 (diff) |
tgsi: Reenable OPCODE_ARR.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sse2.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/tgsi_sse2.c index 68f5510351..ff869c8312 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sse2.c @@ -1924,16 +1924,15 @@ emit_instruction( return 0; break; -#if 0 case TGSI_OPCODE_ARR: FOR_EACH_DST0_ENABLED_CHANNEL( *inst, chan_index ) { FETCH( func, *inst, 0, 0, chan_index ); - emit_rnd( func, 0, 0 ); + emit_rnd( func, 0 ); emit_f2it( func, 0 ); STORE( func, *inst, 0, 0, chan_index ); } break; -#endif + case TGSI_OPCODE_BRA: return 0; break; |