projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe20a61
)
updated comment
author
Brian
<brian@yutani.localnet.net>
Fri, 23 Mar 2007 16:46:08 +0000
(10:46 -0600)
committer
Brian
<brian@yutani.localnet.net>
Fri, 23 Mar 2007 16:46:08 +0000
(10:46 -0600)
src/mesa/shader/slang/slang_emit.c
patch
|
blob
|
history
diff --git
a/src/mesa/shader/slang/slang_emit.c
b/src/mesa/shader/slang/slang_emit.c
index 6442a023634f3560ec5e8646c534fec60293b52b..16a054b35e5b0649efbf8c9fcfa4b99b5153f950 100644
(file)
--- a/
src/mesa/shader/slang/slang_emit.c
+++ b/
src/mesa/shader/slang/slang_emit.c
@@
-860,8
+860,8
@@
emit_compare(slang_emit_info *emitInfo, slang_ir_node *n)
inst->DstReg.File = PROGRAM_TEMPORARY;
inst->DstReg.Index = n->Store->Index;
inst->Comment = _mesa_strdup("Reduce vec to bool");
- /* compute D = (D == 0) actually: D.x = (D.x = 0) */
if (n->Opcode == IR_EQUAL) {
+ /* compute D.x = !D.x via D.x = (D.x == 0) */
inst = new_instruction(emitInfo, OPCODE_SEQ);
inst->SrcReg[0].File = PROGRAM_TEMPORARY;
inst->SrcReg[0].Index = n->Store->Index;