diff options
author | Nicolai Hähnle <[email protected]> | 2009-09-09 19:56:57 +0200 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2009-09-21 12:56:16 +0200 |
commit | 736e1ae42fd61f2b9f982b0491ca7daea7e615ed (patch) | |
tree | 4237ef2f34e7110b6f2453ba29c2d5f48950a568 /src/mesa/shader | |
parent | 1d4dbd8d9b00cdba8c4aef4a3994d8763fea0dff (diff) |
r300: Fix handling of NV_vertex_program parameters
The handling is a bit inefficient, unfortunately, but I don't want to make
any intrusive changes for Mesa 7.6.
Signed-off-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/shader')
-rw-r--r-- | src/mesa/shader/program.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 963478fccdb..2cd6eb8a389 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -502,6 +502,7 @@ _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog) = (const struct gl_vertex_program *) prog; struct gl_vertex_program *vpc = (struct gl_vertex_program *) clone; vpc->IsPositionInvariant = vp->IsPositionInvariant; + vpc->IsNVProgram = vp->IsNVProgram; } break; case GL_FRAGMENT_PROGRAM_ARB: |