[gtk/path-work-rebased: 45/71] contour: Special-case rects for strokes
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/path-work-rebased: 45/71] contour: Special-case rects for strokes
- Date: Fri, 8 Apr 2022 20:45:36 +0000 (UTC)
commit 31fe02e44905dfb80d6f6107e1113c4aa2c0138e
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Dec 5 14:20:17 2020 -0500
contour: Special-case rects for strokes
In many cases, the outline of a rectangle is just
two rectangles.
gsk/gskcontour.c | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
---
diff --git a/gsk/gskcontour.c b/gsk/gskcontour.c
index b37de599e5..d399a7a4cf 100644
--- a/gsk/gskcontour.c
+++ b/gsk/gskcontour.c
@@ -495,11 +495,43 @@ gsk_rect_contour_get_stroke_bounds (const GskContour *contour,
return TRUE;
}
+static gboolean
+stroke_is_simple (GskStroke *stroke)
+{
+ if (stroke->line_join != GSK_LINE_JOIN_MITER &&
+ stroke->line_join != GSK_LINE_JOIN_MITER_CLIP)
+ return FALSE;
+
+ if (stroke->miter_limit < 1.5)
+ return FALSE;
+
+ if (stroke->dash_length != 0)
+ return FALSE;
+
+ return TRUE;
+}
+
static void
gsk_rect_contour_add_stroke (const GskContour *contour,
GskPathBuilder *builder,
GskStroke *stroke)
{
+ const GskRectContour *self = (const GskRectContour *) contour;
+
+ if (stroke_is_simple (stroke))
+ {
+ graphene_rect_t rect;
+
+ graphene_rect_init (&rect, self->x, self->y, self->width, self->height);
+
+ graphene_rect_inset (&rect, stroke->line_width / 2, stroke->line_width / 2);
+ gsk_path_builder_add_rect (builder, &rect);
+
+ graphene_rect_inset (&rect, - stroke->line_width, - stroke->line_width);
+ rect.origin.x += rect.size.width;
+ rect.size.width = - rect.size.width;
+ gsk_path_builder_add_rect (builder, &rect);
+ }
}
static const GskContourClass GSK_RECT_CONTOUR_CLASS =
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]