diff options
author | Michel Dänzer <[email protected]> | 2008-02-07 19:44:42 +0000 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2008-02-07 19:45:24 +0000 |
commit | 909c703bfbf7404414befaa0a94b76d78ba3cb4c (patch) | |
tree | 0d01e5427636de8a7f864304898b8696470d2dcf /src/mesa/pipe/tgsi/exec | |
parent | 28ecb986d958d52c9a996453e53418d1f98d7f75 (diff) |
tgsi: Fall back to interpreter instead of assert(0) on unimplemented SSE code.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec')
-rwxr-xr-x | src/mesa/pipe/tgsi/exec/tgsi_sse2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c index f2180082f15..40bacf85526 100755 --- a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c +++ b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c @@ -2254,8 +2254,7 @@ tgsi_emit_sse2( case TGSI_TOKEN_TYPE_IMMEDIATE: /* XXX implement this */ - assert(0); - break; + return 0; default: assert( 0 ); |