forked from AuroraMiddleware/gtk
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)
This commit is contained in:
parent
251c0b4143
commit
6c30cdbd8d
@ -1,5 +1,9 @@
|
|||||||
2005-07-12 Matthias Clasen <mclasen@redhat.com>
|
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/gtkfilesystemunix.c
|
||||||
(gtk_file_system_unix_volume_get_display_name): Follow
|
(gtk_file_system_unix_volume_get_display_name): Follow
|
||||||
the Nautilus change and rename "Filesystem" to "File System",
|
the Nautilus change and rename "Filesystem" to "File System",
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2005-07-12 Matthias Clasen <mclasen@redhat.com>
|
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/gtkfilesystemunix.c
|
||||||
(gtk_file_system_unix_volume_get_display_name): Follow
|
(gtk_file_system_unix_volume_get_display_name): Follow
|
||||||
the Nautilus change and rename "Filesystem" to "File System",
|
the Nautilus change and rename "Filesystem" to "File System",
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
2005-07-12 Matthias Clasen <mclasen@redhat.com>
|
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/gtkfilesystemunix.c
|
||||||
(gtk_file_system_unix_volume_get_display_name): Follow
|
(gtk_file_system_unix_volume_get_display_name): Follow
|
||||||
the Nautilus change and rename "Filesystem" to "File System",
|
the Nautilus change and rename "Filesystem" to "File System",
|
||||||
|
@ -1045,7 +1045,7 @@ make_stipple_tile_surface (cairo_t *cr,
|
|||||||
alpha_surface = _gdk_drawable_ref_cairo_surface (stipple);
|
alpha_surface = _gdk_drawable_ref_cairo_surface (stipple);
|
||||||
|
|
||||||
surface = cairo_surface_create_similar (cairo_get_target (cr),
|
surface = cairo_surface_create_similar (cairo_get_target (cr),
|
||||||
CAIRO_FORMAT_ARGB32,
|
CAIRO_CONTENT_COLOR_ALPHA,
|
||||||
width, height);
|
width, height);
|
||||||
|
|
||||||
tmp_cr = cairo_create (surface);
|
tmp_cr = cairo_create (surface);
|
||||||
|
Loading…
Reference in New Issue
Block a user