mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
texture-mipmap: Fix some leaks and tidy up
Seems we were leaking mipmap->mipmap_texture and mipmap->fb. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2562>
This commit is contained in:
parent
8fcee7a8a5
commit
8019714b5d
@ -68,8 +68,9 @@ meta_texture_mipmap_free (MetaTextureMipmap *mipmap)
|
||||
g_return_if_fail (mipmap != NULL);
|
||||
|
||||
cogl_clear_object (&mipmap->pipeline);
|
||||
|
||||
meta_texture_mipmap_set_base_texture (mipmap, NULL);
|
||||
cogl_clear_object (&mipmap->base_texture);
|
||||
cogl_clear_object (&mipmap->mipmap_texture);
|
||||
g_clear_object (&mipmap->fb);
|
||||
|
||||
g_free (mipmap);
|
||||
}
|
||||
@ -93,10 +94,7 @@ meta_texture_mipmap_set_base_texture (MetaTextureMipmap *mipmap,
|
||||
if (texture == mipmap->base_texture)
|
||||
return;
|
||||
|
||||
if (mipmap->base_texture != NULL)
|
||||
{
|
||||
cogl_object_unref (mipmap->base_texture);
|
||||
}
|
||||
cogl_clear_object (&mipmap->base_texture);
|
||||
|
||||
mipmap->base_texture = texture;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user