Lines Matching refs:colors

23         /** By default gradients will interpolate their colors in unpremul space
25 * gradients will premultiply their colors first, and then interpolate
38 @param colors The array[count] of colors, to be distributed between the two points
40 each corresponding color in the colors array. If this is NULL,
41 the the colors are distributed evenly between the start and end point.
44 @param count Must be >=2. The number of colors (and pos if not NULL) entries.
48 const SkColor colors[], const SkScalar pos[], int count,
53 const SkColor colors[], const SkScalar pos[], int count,
55 return CreateLinear(pts, colors, pos, count, mode, 0, NULL);
60 const SkColor colors[], const SkScalar pos[], int count,
63 return CreateLinear(pts, colors, pos, count, mode, flags, localMatrix);
74 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
76 each corresponding color in the colors array. If this is NULL,
77 the the colors are distributed evenly between the center and edge of the circle.
80 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
84 const SkColor colors[], const SkScalar pos[], int count,
89 const SkColor colors[], const SkScalar pos[], int count,
91 return CreateRadial(center, radius, colors, pos, count, mode, 0, NULL);
96 const SkColor colors[], const SkScalar pos[], int count,
99 return CreateRadial(center, radius, colors, pos, count, mode, flags, localMatrix);
113 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
115 each corresponding color in the colors array. If this is NULL,
116 the the colors are distributed evenly between the center and edge of the circle.
119 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
124 const SkColor colors[], const SkScalar pos[], int count,
130 const SkColor colors[], const SkScalar pos[], int count,
132 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
139 const SkColor colors[], const SkScalar pos[], int count,
142 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
155 const SkColor colors[], const SkScalar pos[], int count,
161 const SkColor colors[], const SkScalar pos[], int count,
163 return CreateTwoPointConical(start, startRadius, end, endRadius, colors, pos, count, mode,
170 const SkColor colors[], const SkScalar pos[], int count,
173 return CreateTwoPointConical(start, startRadius, end, endRadius, colors, pos, count, mode,
185 @param colors The array[count] of colors, to be distributed around the center.
187 each corresponding color in the colors array. If this is NULL,
188 the the colors are distributed evenly between the center and edge of the circle.
191 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
194 const SkColor colors[], const SkScalar pos[], int count,
198 const SkColor colors[], const SkScalar pos[], int count) {
199 return CreateSweep(cx, cy, colors, pos, count, 0, NULL);
204 const SkColor colors[], const SkScalar pos[], int count,
207 return CreateSweep(cx, cy, colors, pos, count, flags, localMatrix);