diff options
author | Brian Paul <[email protected]> | 2010-08-27 10:51:47 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-08-27 10:51:47 -0600 |
commit | c8e0970667d2b4d92abe22bf099cafee4acb717b (patch) | |
tree | ac5508a945cf63360f7e9f51bba4194301f77bc5 /src/mesa/main/shared.c | |
parent | 476adf796b150ca93fcfaf6c6d97a9eedd678561 (diff) |
mesa: free the fallback texture object in free_shared_state()
Diffstat (limited to 'src/mesa/main/shared.c')
-rw-r--r-- | src/mesa/main/shared.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/shared.c b/src/mesa/main/shared.c index cbe004518a0..ea7e503cf3b 100644 --- a/src/mesa/main/shared.c +++ b/src/mesa/main/shared.c @@ -288,6 +288,10 @@ free_shared_state(GLcontext *ctx, struct gl_shared_state *shared) { GLuint i; + /* Free the dummy/fallback texture object */ + if (shared->FallbackTex) + ctx->Driver.DeleteTexture(ctx, shared->FallbackTex); + /* * Free display lists */ |