[cairo] Another sweep_gradient fix
k was -1 sometimes. Fixes the rest of https://roettsch.es/var_colrv1.html
This commit is contained in:
parent
13bfef9f01
commit
570fe998c9
|
@ -727,7 +727,7 @@ _hb_cairo_add_sweep_gradient_patches (hb_color_stop_t *stops,
|
|||
//assert (angles[0] + k * span <= 0 && 0 < angles[n_stops - 1] + k * span);
|
||||
span = fabs (span);
|
||||
|
||||
for (unsigned l = k; l < 1000; l++)
|
||||
for (signed l = k; l < 1000; l++)
|
||||
{
|
||||
for (unsigned i = 1; i < n_stops; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue