diff options
author | Brian <[email protected]> | 2007-10-02 16:50:40 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-02 16:50:40 -0600 |
commit | 2dbd905ab0265b520efccce24ce9de66b6fc5fb0 (patch) | |
tree | 41dcd89898e9f7a0fa91506f1625d41a1ee8969d /src/mesa/shader/slang | |
parent | de1d725f442caa4d8ecbac3256b5a33d1f4a1257 (diff) |
fix comment: s/branch/kill/
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 2 |
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 fe13f2865cd..41646af387a 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; } |