[gtk+/wip/baedert/drawing: 190/348] widget: Draw widget clips with GEOMETRY debugging
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/drawing: 190/348] widget: Draw widget clips with GEOMETRY debugging
- Date: Sat, 8 Jul 2017 10:46:47 +0000 (UTC)
commit 92a110ac0e60917157d342338294791f3324ab51
Author: Timm Bäder <mail baedert org>
Date: Mon May 22 11:37:04 2017 +0200
widget: Draw widget clips with GEOMETRY debugging
gtk/gtkwidget.c | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index 9ca7c30..9c02445 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -15473,6 +15473,38 @@ gtk_widget_maybe_add_debug_render_nodes (GtkWidget *widget,
priv->highlight_resize = FALSE;
gtk_widget_queue_draw (widget);
}
+
+ if (GTK_DISPLAY_DEBUG_CHECK (display, GEOMETRY))
+ {
+ GdkRGBA clip_color = {0, 0, 1, 0.7};
+ GtkAllocation offset_clip;
+ graphene_rect_t bounds;
+
+ offset_clip = priv->clip;
+ offset_clip.x -= priv->allocation.x;
+ offset_clip.y -= priv->allocation.y;
+
+ graphene_rect_init (&bounds,
+ offset_clip.x, offset_clip.y,
+ offset_clip.width, 1);
+ gtk_snapshot_append_color (snapshot, &clip_color, &bounds, "Clip Top");
+
+ graphene_rect_init (&bounds,
+ offset_clip.x, offset_clip.y + offset_clip.height - 1,
+ offset_clip.width, 1);
+ gtk_snapshot_append_color (snapshot, &clip_color, &bounds, "Clip bottom");
+
+ graphene_rect_init (&bounds,
+ offset_clip.x, offset_clip.y + 1,
+ 1, offset_clip.height - 2);
+ gtk_snapshot_append_color (snapshot, &clip_color, &bounds, "Clip left");
+
+ graphene_rect_init (&bounds,
+ offset_clip.x + offset_clip.width - 1, offset_clip.y + 1,
+ 1, offset_clip.height - 2);
+ gtk_snapshot_append_color (snapshot, &clip_color, &bounds, "Clip right");
+
+ }
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]