[gtk+/gtk-2-22] entry: replace gdk_draw_pixbuf() call with Cairo version
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/gtk-2-22] entry: replace gdk_draw_pixbuf() call with Cairo version
- Date: Sat, 7 Aug 2010 00:39:36 +0000 (UTC)
commit 92055d8d328a7adaa05f3c6ac6d1c496819940ec
Author: Benjamin Otte <otte redhat com>
Date: Mon Jul 12 00:00:07 2010 +0200
entry: replace gdk_draw_pixbuf() call with Cairo version
gtk/gtkentry.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 4eae62c..0ca94bb 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -3208,6 +3208,7 @@ draw_icon (GtkWidget *widget,
EntryIconInfo *icon_info = priv->icons[icon_pos];
GdkPixbuf *pixbuf;
gint x, y, width, height;
+ cairo_t *cr;
if (!icon_info)
return;
@@ -3265,9 +3266,10 @@ draw_icon (GtkWidget *widget,
pixbuf = temp_pixbuf;
}
- gdk_draw_pixbuf (icon_info->window, widget->style->black_gc, pixbuf,
- 0, 0, x, y, -1, -1,
- GDK_RGB_DITHER_NORMAL, 0, 0);
+ cr = gdk_cairo_create (icon_info->window);
+ gdk_cairo_set_source_pixbuf (cr, pixbuf, x, y);
+ cairo_paint (cr);
+ cairo_destroy (cr);
g_object_unref (pixbuf);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]