diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-26 07:41:19 -0700 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-11-26 07:41:19 -0700 |
commit | 1250526e3012f6958679c5dcdcb990387b53479b (patch) | |
tree | 4f6e3a463c09e33e60ee07a8a5930a1800a24210 /src/gallium/auxiliary/tgsi | |
parent | 6e96bd70e56f6ba4ff444c584376475a136bca26 (diff) |
gallium: disable TGSI_OPCODE_ARR case until emit_rnd() is redone.
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sse2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/tgsi_sse2.c index 4bda756dbc..29442b4ec4 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sse2.c @@ -1878,6 +1878,7 @@ 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 ); @@ -1886,7 +1887,7 @@ emit_instruction( STORE( func, *inst, 0, 0, chan_index ); } break; - +#endif case TGSI_OPCODE_BRA: return 0; break; |