diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-14 12:19:22 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-05-14 12:47:29 -0600 |
commit | b2562736894b6a97e4f1be6c6861e250e9d0a765 (patch) | |
tree | a165d0ba61b5711e7a82d8f44f7f2612a9c42d35 /src/mesa/shader/shader_api.c | |
parent | 73c5505c13c42ba1ab95fa1d1003d5f9327428a5 (diff) |
fix some additional program refcounting bugs
cherry-picked from master
Diffstat (limited to 'src/mesa/shader/shader_api.c')
-rw-r--r-- | src/mesa/shader/shader_api.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/shader/shader_api.c b/src/mesa/shader/shader_api.c index 5ec03563ba..fb3c59b22d 100644 --- a/src/mesa/shader/shader_api.c +++ b/src/mesa/shader/shader_api.c @@ -245,10 +245,8 @@ _mesa_free_shader(GLcontext *ctx, struct gl_shader *sh) _mesa_free((void *) sh->Source); if (sh->InfoLog) _mesa_free(sh->InfoLog); - for (i = 0; i < sh->NumPrograms; i++) { - assert(sh->Programs[i]); - ctx->Driver.DeleteProgram(ctx, sh->Programs[i]); - } + for (i = 0; i < sh->NumPrograms; i++) + _mesa_reference_program(ctx, &sh->Programs[i], NULL); if (sh->Programs) _mesa_free(sh->Programs); _mesa_free(sh); |