summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-02 16:50:40 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-02 16:50:40 -0600
commit2dbd905ab0265b520efccce24ce9de66b6fc5fb0 (patch)
tree41dcd89898e9f7a0fa91506f1625d41a1ee8969d /src
parentde1d725f442caa4d8ecbac3256b5a33d1f4a1257 (diff)
fix comment: s/branch/kill/
Diffstat (limited to 'src')
-rw-r--r--src/mesa/shader/slang/slang_emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c
index fe13f2865c..41646af387 100644
--- a/src/mesa/shader/slang/slang_emit.c
+++ b/src/mesa/shader/slang/slang_emit.c
@@ -864,7 +864,7 @@ emit_kill(slang_emit_info *emitInfo)
* Note that ARB-KILL depends on sign of vector operand.
*/
inst = new_instruction(emitInfo, OPCODE_KIL_NV);
- inst->DstReg.CondMask = COND_TR; /* always branch */
+ inst->DstReg.CondMask = COND_TR; /* always kill */
return inst;
}