[gtk+/rendering-cleanup-next: 164/203] gdk: Get rid of gdk_drawable_get_size() usage
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/rendering-cleanup-next: 164/203] gdk: Get rid of gdk_drawable_get_size() usage
- Date: Thu, 23 Sep 2010 10:44:53 +0000 (UTC)
commit 37dfaf88baac0db8219010c09c7909b2593522d6
Author: Benjamin Otte <otte redhat com>
Date: Mon Sep 20 12:53:46 2010 +0200
gdk: Get rid of gdk_drawable_get_size() usage
gdk/gdkdevice.c | 3 ++-
gdk/gdkwindow.c | 24 +++++++++---------------
2 files changed, 11 insertions(+), 16 deletions(-)
---
diff --git a/gdk/gdkdevice.c b/gdk/gdkdevice.c
index cec3a08..e7f9fe7 100644
--- a/gdk/gdkdevice.c
+++ b/gdk/gdkdevice.c
@@ -1254,7 +1254,8 @@ _gdk_device_translate_window_coord (GdkDevice *device,
}
window_private = (GdkWindowObject *) window;
- gdk_drawable_get_size (window, &window_width, &window_height);
+ window_width = gdk_window_get_width (window);
+ window_height = gdk_window_get_height (window);
x_resolution = axis_info_x->resolution;
y_resolution = axis_info_y->resolution;
diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c
index a81d5fa..fd3addd 100644
--- a/gdk/gdkwindow.c
+++ b/gdk/gdkwindow.c
@@ -3072,15 +3072,10 @@ gdk_window_end_paint (GdkWindow *window)
composited->parent;
composited = composited->parent)
{
- int width, height;
-
- gdk_drawable_get_size (GDK_DRAWABLE (composited->parent),
- &width, &height);
-
clip_box.x += composited->x;
clip_box.y += composited->y;
- clip_box.width = MIN (clip_box.width, width - clip_box.x);
- clip_box.height = MIN (clip_box.height, height - clip_box.y);
+ clip_box.width = MIN (clip_box.width, composited->parent->width - clip_box.x);
+ clip_box.height = MIN (clip_box.height, composited->parent->height - clip_box.y);
if (composited->composited)
{
@@ -4315,9 +4310,8 @@ gdk_window_invalidate_rect_full (GdkWindow *window,
{
window_rect.x = 0;
window_rect.y = 0;
- gdk_drawable_get_size (GDK_DRAWABLE (window),
- &window_rect.width,
- &window_rect.height);
+ window_rect.width = private->width;
+ window_rect.height = private->height;
rect = &window_rect;
}
@@ -6877,11 +6871,11 @@ gdk_window_set_device_cursor (GdkWindow *window,
*
* <note>
* If @window is not a toplevel, it is <emphasis>much</emphasis> better
- * to call gdk_window_get_position() and gdk_drawable_get_size() instead,
- * because it avoids the roundtrip to the X server and because
- * gdk_drawable_get_size() supports the full 32-bit coordinate space,
- * whereas gdk_window_get_geometry() is restricted to the 16-bit
- * coordinates of X11.
+ * to call gdk_window_get_position(), gdk_window_get_width() and
+ * gdk_window_get_height() instead, because it avoids the roundtrip to
+ * the X server and because these functions support the full 32-bit
+ * coordinate space, whereas gdk_window_get_geometry() is restricted to
+ * the 16-bit coordinates of X11.
*</note>
**/
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]