diff options
author | Brian Paul <[email protected]> | 2004-02-27 02:13:29 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-02-27 02:13:29 +0000 |
commit | db79b5683cfc3f2ea3f9b0aca8c4d149bf9a63f7 (patch) | |
tree | 4e90aaabeba36a62853377c8ad7cc5d6eed2a981 /src/mesa/swrast/s_nvfragprog.c | |
parent | 579ea7ff7a98c95ae5c11f7483910d4d82662ca3 (diff) |
move _mesa_load_state_parameters() to state validation stage
Diffstat (limited to 'src/mesa/swrast/s_nvfragprog.c')
-rw-r--r-- | src/mesa/swrast/s_nvfragprog.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mesa/swrast/s_nvfragprog.c b/src/mesa/swrast/s_nvfragprog.c index 62f95706d9a..ace531e0e2a 100644 --- a/src/mesa/swrast/s_nvfragprog.c +++ b/src/mesa/swrast/s_nvfragprog.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.0 + * Version: 6.1 * * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * @@ -586,11 +586,6 @@ execute_program( GLcontext *ctx, printf("execute fragment program --------------------\n"); #endif - /* XXX: This should go someplace else, but it is safe here (and slow!) - * - karl - */ - _mesa_load_state_parameters(ctx, program->Parameters); - for (pc = 0; pc < maxInst; pc++) { const struct fp_instruction *inst = program->Instructions + pc; |