diff options
author | Eric Anholt <[email protected]> | 2012-10-09 16:44:41 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-10-15 11:53:24 -0700 |
commit | cc763f0f3f5558c4ce055e54da6ebd2279009322 (patch) | |
tree | 2cc13adaea0a9e63bdc032efb154145f970254e9 /src/mesa/program | |
parent | 363643f540312a4d384080ec757ff6c2f45501f5 (diff) |
mesa: Remove support for GL_VERTEX_STATE_PROGRAMs and their execution.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/program')
-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 6e767b6ef5c..80fc649f54b 100644 --- a/src/mesa/program/program.c +++ b/src/mesa/program/program.c @@ -311,7 +311,6 @@ _mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id) struct gl_program *prog; switch (target) { case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */ - case GL_VERTEX_STATE_PROGRAM_NV: prog = _mesa_init_vertex_program(ctx, CALLOC_STRUCT(gl_vertex_program), target, id ); break; |