mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-04 01:17:59 +02:00
quartz: fix repeating radial gradients on 64 bits
Quartz API uses the type CGFloat, which is double on 64 bits, float on 32 bits architectures
This commit is contained in:
parent
0104976dc8
commit
53260148ea
1 changed files with 1 additions and 1 deletions
|
|
@ -996,7 +996,7 @@ CreateRepeatingRadialGradientFunction (cairo_quartz_surface_t *surface,
|
|||
cairo_rectangle_int_t *extents)
|
||||
{
|
||||
cairo_pattern_t *pat;
|
||||
float input_value_range[2];
|
||||
cairo_quartz_float_t input_value_range[2];
|
||||
CGPoint *inner;
|
||||
double *inner_radius;
|
||||
CGPoint *outer;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue