aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_cb_program.c
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2012-10-14 16:27:51 -0700
committerKenneth Graunke <[email protected]>2012-10-16 11:35:23 -0700
commit58c466519d82fe040e9e20263058a03395a7b95b (patch)
tree1213f5dbc9ddebf7a0bd3cd15a1aca97256c52e8 /src/mesa/state_tracker/st_cb_program.c
parente5f03f23a049c7d7960b75b1aaa2d0d1fb1e2d48 (diff)
mesa: Remove yet more remnants of NV_fragment_program.
Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_cb_program.c')
-rw-r--r--src/mesa/state_tracker/st_cb_program.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_cb_program.c b/src/mesa/state_tracker/st_cb_program.c
index 617e7ce6429..e7732bdbd8e 100644
--- a/src/mesa/state_tracker/st_cb_program.c
+++ b/src/mesa/state_tracker/st_cb_program.c
@@ -99,8 +99,7 @@ st_new_program(struct gl_context *ctx, GLenum target, GLuint id)
return _mesa_init_vertex_program(ctx, &prog->Base, target, id);
}
- case GL_FRAGMENT_PROGRAM_ARB:
- case GL_FRAGMENT_PROGRAM_NV: {
+ case GL_FRAGMENT_PROGRAM_ARB: {
struct st_fragment_program *prog = ST_CALLOC_STRUCT(st_fragment_program);
return _mesa_init_fragment_program(ctx, &prog->Base, target, id);
}