summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-12-19 09:58:51 -0500
committerMatthias Clasen <mclasen@redhat.com>2020-12-22 23:50:37 -0500
commitc67a3a9f1465f530b3eb8882c624dd66d69f24c6 (patch)
tree7eb43e31d99e5a0660f91fcc970166409216645c
parentcf3db3c7a14b0cb25b93881d6c2d3efdb3856038 (diff)
downloadgtk+-c67a3a9f1465f530b3eb8882c624dd66d69f24c6.tar.gz
xxx: Make gsk_stroke_to_cairo public
It comes in handy, and does no harm.
-rw-r--r--gsk/gskstroke.c8
-rw-r--r--gsk/gskstroke.h4
-rw-r--r--gsk/gskstrokeprivate.h3
3 files changed, 12 insertions, 3 deletions
diff --git a/gsk/gskstroke.c b/gsk/gskstroke.c
index 60cd3fc6db..b9d5ab1cfa 100644
--- a/gsk/gskstroke.c
+++ b/gsk/gskstroke.c
@@ -111,6 +111,14 @@ gsk_stroke_free (GskStroke *self)
g_free (self);
}
+/**
+ * gsk_stroke_to_cairo:
+ * @self: a #GskStroke
+ * @cr: the cairo context to configure
+ *
+ * A helper function that sets the stroke parameters
+ * of @cr from the values found in @self.
+ */
void
gsk_stroke_to_cairo (const GskStroke *self,
cairo_t *cr)
diff --git a/gsk/gskstroke.h b/gsk/gskstroke.h
index 233de38f85..2444128f77 100644
--- a/gsk/gskstroke.h
+++ b/gsk/gskstroke.h
@@ -80,6 +80,10 @@ void gsk_stroke_set_dash_offset (GskStroke
GDK_AVAILABLE_IN_ALL
float gsk_stroke_get_dash_offset (const GskStroke *self);
+GDK_AVAILABLE_IN_ALL
+void gsk_stroke_to_cairo (const GskStroke *self,
+ cairo_t *cr);
+
G_END_DECLS
diff --git a/gsk/gskstrokeprivate.h b/gsk/gskstrokeprivate.h
index 24594b1e09..9b5445094b 100644
--- a/gsk/gskstrokeprivate.h
+++ b/gsk/gskstrokeprivate.h
@@ -54,9 +54,6 @@ gsk_stroke_clear (GskStroke *stroke)
stroke->n_dash = 0; /* better safe than sorry */
}
-void gsk_stroke_to_cairo (const GskStroke *self,
- cairo_t *cr);
-
G_END_DECLS
#endif /* __GSK_STROKE_PRIVATE_H__ */