diff options
Diffstat (limited to 'src/mesa/program/program.c')
-rw-r--r-- | src/mesa/program/program.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/program/program.c b/src/mesa/program/program.c index 85c9b7b1711..28af5b5f21b 100644 --- a/src/mesa/program/program.c +++ b/src/mesa/program/program.c @@ -223,10 +223,7 @@ _mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id) struct gl_fragment_program *prog = CALLOC_STRUCT(gl_fragment_program); return _mesa_init_gl_program(&prog->Base, target, id); } - case GL_GEOMETRY_PROGRAM_NV: { - struct gl_geometry_program *prog = CALLOC_STRUCT(gl_geometry_program); - return _mesa_init_gl_program(&prog->Base, target, id); - } + case GL_GEOMETRY_PROGRAM_NV: case GL_TESS_CONTROL_PROGRAM_NV: case GL_TESS_EVALUATION_PROGRAM_NV: { struct gl_program *prog = CALLOC_STRUCT(gl_program); |