]> Pileus Git - ~andy/gtk/commitdiff
Fix cairo_content_t <-> cairo_format_t confusion. (#310086, Carlos
authorMatthias Clasen <mclasen@redhat.com>
Tue, 12 Jul 2005 16:49:37 +0000 (16:49 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Tue, 12 Jul 2005 16:49:37 +0000 (16:49 +0000)
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)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gdk/gdkgc.c

index 249d872ab77fe2714e78d8424a4a26b4c301bb3b..7538740941a09c07d4c92c467f6c5509d8f97318 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 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)
+
        * gtk/gtkfilesystemunix.c 
        (gtk_file_system_unix_volume_get_display_name): Follow
        the Nautilus change and rename "Filesystem" to "File System",
index 249d872ab77fe2714e78d8424a4a26b4c301bb3b..7538740941a09c07d4c92c467f6c5509d8f97318 100644 (file)
@@ -1,5 +1,9 @@
 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)
+
        * gtk/gtkfilesystemunix.c 
        (gtk_file_system_unix_volume_get_display_name): Follow
        the Nautilus change and rename "Filesystem" to "File System",
index 249d872ab77fe2714e78d8424a4a26b4c301bb3b..7538740941a09c07d4c92c467f6c5509d8f97318 100644 (file)
@@ -1,5 +1,9 @@
 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)
+
        * gtk/gtkfilesystemunix.c 
        (gtk_file_system_unix_volume_get_display_name): Follow
        the Nautilus change and rename "Filesystem" to "File System",
index b29fecb6089d33485ca1595a1f36f3498272ee6e..6a6f12047daaf4c8d25d43b292c8e79e333c6e6b 100644 (file)
@@ -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);