diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-07-12 16:49:37 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-07-12 16:49:37 +0000 |
commit | 6c30cdbd8d22992275d0143bb301ad4dc32db7f9 (patch) | |
tree | d62b7f1ac2986fa9612141bf877a7a6b88a4d168 /gdk | |
parent | 251c0b4143fa7704a25bc1be9632343683200471 (diff) | |
download | gtk+-6c30cdbd8d22992275d0143bb301ad4dc32db7f9.tar.gz |
Fix cairo_content_t <-> cairo_format_t confusion. (#310086, Carlos
2005-07-12 Matthias Clasen <mclasen@redhat.com>
* gdk/gdkgc.c (make_stipple_tile_surface): Fix
cairo_content_t <-> cairo_format_t confusion. (#310086,
Carlos Garnacho Parro)
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkgc.c b/gdk/gdkgc.c index b29fecb608..6a6f12047d 100644 --- a/gdk/gdkgc.c +++ b/gdk/gdkgc.c @@ -1045,7 +1045,7 @@ make_stipple_tile_surface (cairo_t *cr, alpha_surface = _gdk_drawable_ref_cairo_surface (stipple); surface = cairo_surface_create_similar (cairo_get_target (cr), - CAIRO_FORMAT_ARGB32, + CAIRO_CONTENT_COLOR_ALPHA, width, height); tmp_cr = cairo_create (surface); |