diff options
author | Brian Paul <[email protected]> | 2004-01-11 16:27:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-01-11 16:27:53 +0000 |
commit | 8bc3ce92a2fa1b8b4ae2b928d4102389f2298917 (patch) | |
tree | 3c25d82b26158c0fc8dd6d23c589a82f1595d6f3 /src/mesa/drivers/dri/gamma | |
parent | add9f2168a5d6b15eb9955ee761246c4f4cf8458 (diff) |
call _mesa_delete_texture_object() from in the driver's DeleteTexture function
Diffstat (limited to 'src/mesa/drivers/dri/gamma')
-rw-r--r-- | src/mesa/drivers/dri/gamma/gamma_tex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/gamma/gamma_tex.c b/src/mesa/drivers/dri/gamma/gamma_tex.c index 22ca1445823..72359848228 100644 --- a/src/mesa/drivers/dri/gamma/gamma_tex.c +++ b/src/mesa/drivers/dri/gamma/gamma_tex.c @@ -366,6 +366,8 @@ static void gammaDeleteTexture( GLcontext *ctx, struct gl_texture_object *tObj ) gammaDestroyTexObj( gmesa, t ); tObj->DriverData = 0; } + /* Free mipmap images and the texture object itself */ + _mesa_delete_texture_object(ctx, tObj); } static GLboolean gammaIsTextureResident( GLcontext *ctx, |