mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-12 20:00:09 +00:00
Merge branch 'wip/baedert/for-master' into 'master'
ngl: Remove unused function See merge request GNOME/gtk!3332
This commit is contained in:
commit
157218c507
@ -1619,37 +1619,6 @@ gsk_ngl_render_job_visit_rounded_clip_node (GskNglRenderJob *job,
|
||||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
sort_border_sides (const GdkRGBA *colors,
|
||||
int *indices)
|
||||
{
|
||||
gboolean done[4] = {0, 0, 0, 0};
|
||||
guint cur = 0;
|
||||
|
||||
for (guint i = 0; i < 3; i++)
|
||||
{
|
||||
if (done[i])
|
||||
continue;
|
||||
|
||||
indices[cur] = i;
|
||||
done[i] = TRUE;
|
||||
cur++;
|
||||
|
||||
for (guint k = i + 1; k < 4; k ++)
|
||||
{
|
||||
if (memcmp (&colors[k], &colors[i], sizeof (GdkRGBA)) == 0)
|
||||
{
|
||||
indices[cur] = k;
|
||||
done[k] = TRUE;
|
||||
cur++;
|
||||
}
|
||||
}
|
||||
|
||||
if (cur >= 4)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
gsk_ngl_render_job_visit_rect_border_node (GskNglRenderJob *job,
|
||||
const GskRenderNode *node)
|
||||
|
Loading…
Reference in New Issue
Block a user