Lines Matching defs:pos
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);
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);
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);
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,
162 const SkColor colors[], const SkScalar pos[],
167 const SkColor colors[], const SkScalar pos[],
169 return MakeTwoPointConical(start, startRadius, end, endRadius, colors, pos, count, mode,
182 sk_sp<SkColorSpace> colorSpace, const SkScalar pos[],
188 sk_sp<SkColorSpace> colorSpace, const SkScalar pos[],
191 std::move(colorSpace), pos, count, mode, 0, nullptr);
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
207 @param startAngle Start of the angular range, corresponding to pos == 0.
208 @param endAngle End of the angular range, corresponding to pos == 1.
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);
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
239 @param startAngle Start of the angular range, corresponding to pos == 0.
240 @param endAngle End of the angular range, corresponding to pos == 1.
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);