diff options
author | Brian Paul <[email protected]> | 2003-04-17 02:33:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-04-17 02:33:08 +0000 |
commit | 5960105ca35d5f51ef3881d201faf2cda99ead0c (patch) | |
tree | 50ada17e979da76b6d20a4f78e174600d5625520 /src/mesa/main/nvprogram.c | |
parent | af0c2470210632abf365b149bc81274aa7b04258 (diff) |
Added arbprogram.c to Makefiles.
Added display list support for GL_NV_fragment_program.
Assorted clean-ups.
Diffstat (limited to 'src/mesa/main/nvprogram.c')
-rw-r--r-- | src/mesa/main/nvprogram.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/nvprogram.c b/src/mesa/main/nvprogram.c index b91bf21e586..af1ff36f79c 100644 --- a/src/mesa/main/nvprogram.c +++ b/src/mesa/main/nvprogram.c @@ -1183,7 +1183,7 @@ _mesa_GetProgramNamedParameterdvNV(GLuint id, GLsizei len, const GLubyte *name, } -/* XXX move into arbprogram.c */ +#if 000 void _mesa_ProgramLocalParameter4fARB(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) @@ -1284,3 +1284,4 @@ _mesa_GetProgramLocalParameterdvARB(GLenum target, GLuint index, _mesa_GetProgramLocalParameterfvARB(target, index, floatParams); COPY_4V(params, floatParams); } +#endif |