Lines Matching defs:count
62 @param colors The array[count] of colors, to be distributed between the two points
63 @param pos May be NULL. array[count] of SkScalars, or NULL, of the relative position of
68 @param count Must be >=2. The number of colors (and pos if not NULL) entries.
74 const SkColor colors[], const SkScalar pos[], int count,
78 const SkColor colors[], const SkScalar pos[], int count,
80 return MakeLinear(pts, colors, pos, count, mode, 0, nullptr);
86 @param colors The array[count] of colors, to be distributed between the two points
87 @param pos May be NULL. array[count] of SkScalars, or NULL, of the relative position of
92 @param count Must be >=2. The number of colors (and pos if not NULL) entries.
99 const SkScalar pos[], int count, SkTileMode mode,
103 const SkScalar pos[], int count, SkTileMode mode) {
104 return MakeLinear(pts, colors, std::move(colorSpace), pos, count, mode, 0, nullptr);
111 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
112 @param pos May be NULL. The array[count] of SkScalars, or NULL, of the relative position of
117 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
121 const SkColor colors[], const SkScalar pos[], int count,
125 const SkColor colors[], const SkScalar pos[], int count,
127 return MakeRadial(center, radius, colors, pos, count, mode, 0, nullptr);
134 @param colors The array[count] of colors, to be distributed between the center and edge of the circle
135 @param pos May be NULL. The array[count] of SkScalars, or NULL, of the relative position of
140 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
145 const SkScalar pos[], int count, SkTileMode mode,
149 const SkScalar pos[], int count, SkTileMode mode) {
150 return MakeRadial(center, radius, colors, std::move(colorSpace), pos, count, mode,
163 int count, SkTileMode mode,
168 int count, SkTileMode mode) {
169 return MakeTwoPointConical(start, startRadius, end, endRadius, colors, pos, count, mode,
183 int count, SkTileMode mode,
189 int count, SkTileMode mode) {
191 std::move(colorSpace), pos, count, mode, 0, nullptr);
198 @param colors The array[count] of colors, to be distributed around the center, within
200 @param pos May be NULL. The array[count] of SkScalars, or NULL, of the relative
205 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
211 const SkColor colors[], const SkScalar pos[], int count,
216 const SkColor colors[], const SkScalar pos[], int count,
218 return MakeSweep(cx, cy, colors, pos, count, SkTileMode::kClamp, 0, 360, flags,
222 const SkColor colors[], const SkScalar pos[], int count) {
223 return MakeSweep(cx, cy, colors, pos, count, 0, nullptr);
230 @param colors The array[count] of colors, to be distributed around the center, within
232 @param pos May be NULL. The array[count] of SkScalars, or NULL, of the relative
237 @param count Must be >= 2. The number of colors (and pos if not NULL) entries
244 const SkScalar pos[], int count,
250 const SkScalar pos[], int count,
252 return MakeSweep(cx, cy, colors, std::move(colorSpace), pos, count,
257 const SkScalar pos[], int count) {
258 return MakeSweep(cx, cy, colors, std::move(colorSpace), pos, count, 0, nullptr);