[cairo-bugs] [Bug 54657] commit 0bfd2ac causes great rendering problem is some programs

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Sat Sep 8 08:30:03 PDT 2012


https://bugs.freedesktop.org/show_bug.cgi?id=54657

Chris Wilson <chris at chris-wilson.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |NOTOURBUG

--- Comment #4 from Chris Wilson <chris at chris-wilson.co.uk> 2012-09-08 15:30:03 UTC ---
It's a missing cairo_surface_flush in gtk2-engines-qtcurve, and even worse they
have a memory leak:

--- shadowhelper.c.orig 2012-09-08 16:29:10.000000000 +0100
+++ shadowhelper.c      2012-09-08 16:28:36.000000000 +0100
@@ -58,6 +58,7 @@
         cairo_rectangle(cr, 0, 0, shadowSize, shadowSize);
         cairo_fill(cr);
         cairo_destroy(cr);
+       cairo_surface_destroy(dest);
         g_object_unref(pixbuf);
         return pixmap;
     }

Also note that cairo_rectangle(); cairo_fill(); is just cairo_paint();

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.


More information about the cairo-bugs mailing list