diff options
author | Brian Paul <[email protected]> | 2003-03-29 16:37:07 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-29 16:37:07 +0000 |
commit | 52334967edb3bf79c3eecbd599dcef667ba63239 (patch) | |
tree | 034e20a53230e122bae97787e6b9848e876e026c /src/mesa/main/state.c | |
parent | c6d030a5972c5b1b2902df76a125febe10d8586b (diff) |
proper dispatch for NV_fragment_program functions
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index f4f6a1cb6ef..a2cd89e4455 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.100 2003/03/15 17:33:26 brianp Exp $ */ +/* $Id: state.c,v 1.101 2003/03/29 16:37:07 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -504,7 +504,7 @@ _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize) exec->VertexAttribPointerNV = _mesa_VertexAttribPointerNV; #endif -#if 0 && FEATURE_NV_fragment_program +#if FEATURE_NV_fragment_program exec->ProgramNamedParameter4fNV = _mesa_ProgramNamedParameter4fNV; exec->ProgramNamedParameter4dNV = _mesa_ProgramNamedParameter4dNV; exec->ProgramNamedParameter4fvNV = _mesa_ProgramNamedParameter4fvNV; |