diff options
author | Matt Turner <[email protected]> | 2016-03-02 11:00:01 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2016-03-02 12:15:58 -0800 |
commit | de2ef0401b197f176998e10848dc0822b8a047d7 (patch) | |
tree | 3d9bc07c1c7a932abadbf6deea400cdba51ca3ab /src/mesa | |
parent | b94a46aa8e34de790724bbc0f823fd56555d0cdc (diff) |
program: Drop GL_FRAGMENT_PROGRAM_NV from switch statement.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/program/program.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/program/program.c b/src/mesa/program/program.c index 27867c48d52..67672164f59 100644 --- a/src/mesa/program/program.c +++ b/src/mesa/program/program.c @@ -219,7 +219,6 @@ _mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id) struct gl_vertex_program *prog = CALLOC_STRUCT(gl_vertex_program); return _mesa_init_gl_program(&prog->Base, target, id); } - case GL_FRAGMENT_PROGRAM_NV: case GL_FRAGMENT_PROGRAM_ARB: { struct gl_fragment_program *prog = CALLOC_STRUCT(gl_fragment_program); return _mesa_init_gl_program(&prog->Base, target, id); |