diff options
author | Matthias Clasen <mclasen@redhat.com> | 2020-09-12 09:17:02 -0400 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2020-09-18 15:39:07 +0200 |
commit | c08df82d547aa930da3dd7ca672e225e4b5884f4 (patch) | |
tree | 0985e740bb429e9760cd5d75a6e0cbf37cf68b12 | |
parent | ebfb3e771db33d3c6eae59b843b7bf34171b2135 (diff) | |
download | gtk+-c08df82d547aa930da3dd7ca672e225e4b5884f4.tar.gz |
snapshot: switch to h/vradius
-rw-r--r-- | gtk/gtksnapshot.c | 16 | ||||
-rw-r--r-- | gtk/gtksnapshot.h | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/gtk/gtksnapshot.c b/gtk/gtksnapshot.c index 123bfcd773..3b7c5173a8 100644 --- a/gtk/gtksnapshot.c +++ b/gtk/gtksnapshot.c @@ -1971,8 +1971,8 @@ void gtk_snapshot_append_radial_gradient (GtkSnapshot *snapshot, const graphene_rect_t *bounds, const graphene_point_t *center, - float radius, - float scale, + float hradius, + float vradius, float start, float end, const GskColorStop *stops, @@ -1995,8 +1995,8 @@ gtk_snapshot_append_radial_gradient (GtkSnapshot *snapshot, node = gsk_radial_gradient_node_new (&real_bounds, &real_center, - radius, - scale, + hradius * scale_x, + vradius * scale_y, start, end, stops, @@ -2009,8 +2009,8 @@ void gtk_snapshot_append_repeating_radial_gradient (GtkSnapshot *snapshot, const graphene_rect_t *bounds, const graphene_point_t *center, - float radius, - float scale, + float hradius, + float vradius, float start, float end, const GskColorStop *stops, @@ -2033,8 +2033,8 @@ gtk_snapshot_append_repeating_radial_gradient (GtkSnapshot *snapshot, node = gsk_repeating_radial_gradient_node_new (&real_bounds, &real_center, - radius, - scale, + hradius * scale_x, + vradius * scale_y, start, end, stops, diff --git a/gtk/gtksnapshot.h b/gtk/gtksnapshot.h index 9be3382a52..e3c0e17e65 100644 --- a/gtk/gtksnapshot.h +++ b/gtk/gtksnapshot.h @@ -168,8 +168,8 @@ GDK_AVAILABLE_IN_ALL void gtk_snapshot_append_radial_gradient (GtkSnapshot *snapshot, const graphene_rect_t *bounds, const graphene_point_t *center, - float radius, - float scale, + float hradius, + float vradius, float start, float end, const GskColorStop *stops, @@ -178,8 +178,8 @@ GDK_AVAILABLE_IN_ALL void gtk_snapshot_append_repeating_radial_gradient (GtkSnapshot *snapshot, const graphene_rect_t *bounds, const graphene_point_t *center, - float radius, - float scale, + float hradius, + float vradius, float start, float end, const GskColorStop *stops, |