summaryrefslogtreecommitdiff
path: root/gtk/gtkrendernodepaintable.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2018-04-02 06:15:50 +0200
committerBenjamin Otte <otte@redhat.com>2018-04-05 14:56:39 +0200
commitffc7b2bb0afd04cacbe45cff6f27eb5d644d5b2b (patch)
tree620bed58191f6d4985cf8e09693c79bba0aeda02 /gtk/gtkrendernodepaintable.c
parent12fedca726d42f2087ffc3c5621eeb6757265319 (diff)
downloadgtk+-ffc7b2bb0afd04cacbe45cff6f27eb5d644d5b2b.tar.gz
snapshot: Allow passing the bounds of the created paintable
This allows being more specific about the size. It's useful in particular when the resulting render nodes might be too small for the size, not only when they are too large. For the latter case, using a clip node would be enough. It also requires adding a clip node when rendering the resulting paintable, but that should be optimized out by GtkSnapshot when not necessary.
Diffstat (limited to 'gtk/gtkrendernodepaintable.c')
-rw-r--r--gtk/gtkrendernodepaintable.c45
1 files changed, 24 insertions, 21 deletions
diff --git a/gtk/gtkrendernodepaintable.c b/gtk/gtkrendernodepaintable.c
index 18c36a7a8c..5ec8160946 100644
--- a/gtk/gtkrendernodepaintable.c
+++ b/gtk/gtkrendernodepaintable.c
@@ -28,6 +28,7 @@ struct _GtkRenderNodePaintable
GObject parent_instance;
GskRenderNode *node;
+ graphene_rect_t bounds;
};
struct _GtkRenderNodePaintableClass
@@ -42,29 +43,34 @@ gtk_render_node_paintable_paintable_snapshot (GdkPaintable *paintable,
double height)
{
GtkRenderNodePaintable *self = GTK_RENDER_NODE_PAINTABLE (paintable);
- graphene_rect_t node_bounds;
+ gboolean needs_transform;
- gsk_render_node_get_bounds (self->node, &node_bounds);
+ needs_transform = self->bounds.size.width != width ||
+ self->bounds.size.height != height;
- if (node_bounds.origin.x + node_bounds.size.width != width ||
- node_bounds.origin.y + node_bounds.size.height != height)
+ if (needs_transform)
{
graphene_matrix_t transform;
graphene_matrix_init_scale (&transform,
- width / (node_bounds.origin.x + node_bounds.size.width),
- height / (node_bounds.origin.y + node_bounds.size.height),
+ width / (self->bounds.size.width),
+ height / (self->bounds.size.height),
1.0);
gtk_snapshot_push_transform (snapshot,
&transform,
"RenderNodeScaleToFit");
- gtk_snapshot_append_node (snapshot, self->node);
- gtk_snapshot_pop (snapshot);
- }
- else
- {
- gtk_snapshot_append_node (snapshot, self->node);
}
+
+ gtk_snapshot_push_clip (snapshot, &self->bounds, "RenderNodePaintableClip");
+ gtk_snapshot_offset (snapshot, self->bounds.origin.x, self->bounds.origin.y);
+
+ gtk_snapshot_append_node (snapshot, self->node);
+
+ gtk_snapshot_offset (snapshot, -self->bounds.origin.x, -self->bounds.origin.y);
+ gtk_snapshot_pop (snapshot);
+
+ if (needs_transform)
+ gtk_snapshot_pop (snapshot);
}
static GdkPaintableFlags
@@ -77,22 +83,16 @@ static int
gtk_render_node_paintable_paintable_get_intrinsic_width (GdkPaintable *paintable)
{
GtkRenderNodePaintable *self = GTK_RENDER_NODE_PAINTABLE (paintable);
- graphene_rect_t node_bounds;
- gsk_render_node_get_bounds (self->node, &node_bounds);
-
- return node_bounds.origin.x + node_bounds.size.width;
+ return self->bounds.size.width;
}
static int
gtk_render_node_paintable_paintable_get_intrinsic_height (GdkPaintable *paintable)
{
GtkRenderNodePaintable *self = GTK_RENDER_NODE_PAINTABLE (paintable);
- graphene_rect_t node_bounds;
-
- gsk_render_node_get_bounds (self->node, &node_bounds);
- return node_bounds.origin.y + node_bounds.size.height;
+ return self->bounds.size.height;
}
static void
@@ -132,15 +132,18 @@ gtk_render_node_paintable_init (GtkRenderNodePaintable *self)
}
GdkPaintable *
-gtk_render_node_paintable_new (GskRenderNode *node)
+gtk_render_node_paintable_new (GskRenderNode *node,
+ const graphene_rect_t *bounds)
{
GtkRenderNodePaintable *self;
g_return_val_if_fail (GSK_IS_RENDER_NODE (node), NULL);
+ g_return_val_if_fail (bounds != NULL, NULL);
self = g_object_new (GTK_TYPE_RENDER_NODE_PAINTABLE, NULL);
self->node = gsk_render_node_ref (node);
+ self->bounds = *bounds;
return GDK_PAINTABLE (self);
}