diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-12-11 08:18:47 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-12-11 08:18:47 -0700 |
commit | f9562ff85dd3ace60550110598687c3e728b0e6e (patch) | |
tree | ceb10304e1dc301feeac05d11a57595284f6b9a1 /src/mesa/pipe/tgsi/exec | |
parent | a0dacbf369b1b0496f7cd2df2f7b7ecb621a024c (diff) |
add missing case statements for TGSI_TOKEN_TYPE_IMMEDIATE and assert(0)
We're hitting this with quite a few Mesa demos.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec')
-rwxr-xr-x | src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c index e403cfaaf3..8ee43f59b5 100755 --- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c +++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c @@ -2245,6 +2245,11 @@ tgsi_emit_sse2( &parse.FullToken.FullInstruction ); break; + case TGSI_TOKEN_TYPE_IMMEDIATE: + /* XXX implement this */ + assert(0); + break; + default: assert( 0 ); } @@ -2321,6 +2326,11 @@ tgsi_emit_sse2_fs( &parse.FullToken.FullInstruction ); break; + case TGSI_TOKEN_TYPE_IMMEDIATE: + /* XXX implement this */ + assert(0); + break; + default: assert( 0 ); } |