diff options
author | Kenneth Graunke <[email protected]> | 2012-10-14 15:36:07 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-10-16 11:24:34 -0700 |
commit | 2254569bda5a0da139544e761d4a65c68c4de400 (patch) | |
tree | 052d524410df051131aa343fcded9216e9fa987d /src/mesa/main/arbprogram.c | |
parent | 9dc2c28983b68f290558d070806b236c202b3744 (diff) |
mesa: Remove support for parsing NV fragment programs.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/arbprogram.c')
-rw-r--r-- | src/mesa/main/arbprogram.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/arbprogram.c b/src/mesa/main/arbprogram.c index 4de4cd36489..acbffa3e703 100644 --- a/src/mesa/main/arbprogram.c +++ b/src/mesa/main/arbprogram.c @@ -37,7 +37,6 @@ #include "main/mtypes.h" #include "main/arbprogram.h" #include "program/arbprogparse.h" -#include "program/nvfragparse.h" #include "program/program.h" @@ -364,13 +363,6 @@ _mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len, base = & prog->Base; } - else if (target == GL_FRAGMENT_PROGRAM_NV - && ctx->Extensions.NV_fragment_program) { - struct gl_fragment_program *prog = ctx->FragmentProgram.Current; - _mesa_parse_nv_fragment_program(ctx, target, string, len, prog); - - base = & prog->Base; - } else { _mesa_error(ctx, GL_INVALID_ENUM, "glProgramStringARB(target)"); return; |