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/i810 | |
parent | add9f2168a5d6b15eb9955ee761246c4f4cf8458 (diff) |
call _mesa_delete_texture_object() from in the driver's DeleteTexture function
Diffstat (limited to 'src/mesa/drivers/dri/i810')
-rw-r--r-- | src/mesa/drivers/dri/i810/i810tex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i810/i810tex.c b/src/mesa/drivers/dri/i810/i810tex.c index f2ebd35c9ac..31e5207eb2a 100644 --- a/src/mesa/drivers/dri/i810/i810tex.c +++ b/src/mesa/drivers/dri/i810/i810tex.c @@ -426,6 +426,8 @@ static void i810DeleteTexture( GLcontext *ctx, struct gl_texture_object *tObj ) I810_FIREVERTICES( imesa ); driDestroyTextureObject( t ); } + /* Free mipmap images and the texture object itself */ + _mesa_delete_texture_object(ctx, tObj); } static const struct gl_texture_format * |