diff options
author | Brian <[email protected]> | 2007-02-22 16:00:54 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-02-22 16:00:54 -0700 |
commit | 740a8b0b66f0e00807f064e3105fd6b045e5a2d0 (patch) | |
tree | 3df067a5549ad306aad6cf47ac57a83411225fa2 | |
parent | ef64cda9786858c8247166ae2692fc043121b6f4 (diff) |
_mesa_ExecuteProgramNV is now a no-op
-rw-r--r-- | src/mesa/shader/nvprogram.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/shader/nvprogram.c b/src/mesa/shader/nvprogram.c index 531a41083cb..337784bfe25 100644 --- a/src/mesa/shader/nvprogram.c +++ b/src/mesa/shader/nvprogram.c @@ -45,7 +45,6 @@ #include "prog_parameter.h" #include "prog_instruction.h" #include "nvfragparse.h" -#include "nvvertexec.h" #include "nvvertparse.h" #include "nvprogram.h" #include "program.h" @@ -77,7 +76,7 @@ _mesa_ExecuteProgramNV(GLenum target, GLuint id, const GLfloat *params) return; } - _mesa_exec_vertex_state_program(ctx, vprog, params); + _mesa_problem(ctx, "glExecuteProgramNV() not supported"); } |