diff options
author | Brian Paul <[email protected]> | 2008-05-14 12:19:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-05-14 12:47:29 -0600 |
commit | b2562736894b6a97e4f1be6c6861e250e9d0a765 (patch) | |
tree | a165d0ba61b5711e7a82d8f44f7f2612a9c42d35 /src/mesa/shader/program.c | |
parent | 73c5505c13c42ba1ab95fa1d1003d5f9327428a5 (diff) |
fix some additional program refcounting bugs
cherry-picked from master
Diffstat (limited to 'src/mesa/shader/program.c')
-rw-r--r-- | src/mesa/shader/program.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 9a23c5d7d31..e06ab5aa237 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -116,8 +116,6 @@ _mesa_free_program_data(GLcontext *ctx) } - - /** * Set the vertex/fragment program error state (position and error string). * This is generally called from within the parsers. @@ -272,6 +270,7 @@ _mesa_delete_program(GLcontext *ctx, struct gl_program *prog) { (void) ctx; ASSERT(prog); + ASSERT(prog->RefCount==0); if (prog == &_mesa_DummyProgram) return; @@ -391,7 +390,7 @@ _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog) clone->Format = prog->Format; clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions); if (!clone->Instructions) { - ctx->Driver.DeleteProgram(ctx, clone); + _mesa_reference_program(ctx, &clone, NULL); return NULL; } _mesa_copy_instructions(clone->Instructions, prog->Instructions, |