From: Neil Roberts Date: Fri, 28 May 2010 17:12:53 +0000 (+0100) Subject: cogl-texture-2d: Regenerate the mipmaps when the texture is modified X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4fc5074faa3cda9d1c920ac94fe46e310a4ee2d;p=profile%2Fivi%2Fclutter.git cogl-texture-2d: Regenerate the mipmaps when the texture is modified When the texture is modified by cogl_texture_set_region, it wasn't setting mipmaps_dirty so it would never update the mipmaps. --- diff --git a/clutter/cogl/cogl/cogl-texture-2d.c b/clutter/cogl/cogl/cogl-texture-2d.c index 4ec2e0e..793c5cd 100644 --- a/clutter/cogl/cogl/cogl-texture-2d.c +++ b/clutter/cogl/cogl/cogl-texture-2d.c @@ -485,6 +485,8 @@ _cogl_texture_2d_set_region (CoglTexture *tex, if (tmp_bmp_owner) g_free (tmp_bmp.data); + tex_2d->mipmaps_dirty = TRUE; + return TRUE; }