diff options
author | Brian Paul <[email protected]> | 2008-08-12 17:41:21 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-08-12 17:41:21 -0600 |
commit | 5af60556edc97bc1d4fd57933e99e9661dbc5fa0 (patch) | |
tree | 7a23355e6921f22a027d556e56d65b8dd57c519b /src/mesa/shader/slang | |
parent | faad6655946968dd16ab30cc8d5fbd5a09321976 (diff) |
mesa: glsl: fix comment
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 b902da84570..f0c3791f2a1 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -991,7 +991,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 */ assert(emitInfo->prog->Target == GL_FRAGMENT_PROGRAM_ARB); fp = (struct gl_fragment_program *) emitInfo->prog; |