summaryrefslogtreecommitdiffstats
path: root/src/mesa/program
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2016-03-02 11:00:01 -0800
committerMatt Turner <mattst88@gmail.com>2016-03-02 12:15:58 -0800
commitde2ef0401b197f176998e10848dc0822b8a047d7 (patch)
tree3d9bc07c1c7a932abadbf6deea400cdba51ca3ab /src/mesa/program
parentb94a46aa8e34de790724bbc0f823fd56555d0cdc (diff)
downloadexternal_mesa3d-de2ef0401b197f176998e10848dc0822b8a047d7.zip
external_mesa3d-de2ef0401b197f176998e10848dc0822b8a047d7.tar.gz
external_mesa3d-de2ef0401b197f176998e10848dc0822b8a047d7.tar.bz2
program: Drop GL_FRAGMENT_PROGRAM_NV from switch statement.
Diffstat (limited to 'src/mesa/program')
-rw-r--r--src/mesa/program/program.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/program/program.c b/src/mesa/program/program.c
index 27867c4..6767216 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);