diff options
author | Matt Turner <[email protected]> | 2016-02-27 13:19:50 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2016-03-01 11:41:29 -0800 |
commit | 9e11ff7e11c87dd19d2274644bca7a869ff2143d (patch) | |
tree | 46b51fcde60dc58b34bcb65b795cba69c45a1992 /src/mesa/program/prog_execute.c | |
parent | a0c3650ad359df8f770eee042d60359492df3702 (diff) |
program: Remove OPCODE_KIL_NV.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Acked-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_execute.c')
-rw-r--r-- | src/mesa/program/prog_execute.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/program/prog_execute.c b/src/mesa/program/prog_execute.c index 2c52d0db508..33f52fb2584 100644 --- a/src/mesa/program/prog_execute.c +++ b/src/mesa/program/prog_execute.c @@ -805,11 +805,6 @@ _mesa_execute_program(struct gl_context * ctx, case OPCODE_ENDIF: /* nothing */ break; - case OPCODE_KIL_NV: /* NV_f_p only (conditional) */ - if (eval_condition(machine, inst)) { - return GL_FALSE; - } - break; case OPCODE_KIL: /* ARB_f_p only */ { GLfloat a[4]; |