projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0dacbf
)
add missing case statements for TGSI_TOKEN_TYPE_IMMEDIATE and assert(0)
author
Brian
<brian.paul@tungstengraphics.com>
Tue, 11 Dec 2007 15:18:47 +0000
(08:18 -0700)
committer
Brian
<brian.paul@tungstengraphics.com>
Tue, 11 Dec 2007 15:18:47 +0000
(08:18 -0700)
We're hitting this with quite a few Mesa demos.
src/mesa/pipe/tgsi/exec/tgsi_sse2.c
patch
|
blob
|
history
diff --git
a/src/mesa/pipe/tgsi/exec/tgsi_sse2.c
b/src/mesa/pipe/tgsi/exec/tgsi_sse2.c
index
e403cfa
..
8ee43f5
100755
(executable)
--- 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 );
}