Home | History | Annotate | Download | only in gradients

Lines Matching defs:dstC

115 typedef void (*TwoPointConicalProc)(TwoPtRadial* rec, SkPMColor* dstC,
118 static void twopoint_clamp(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
124 *dstC++ = 0;
128 *dstC++ = cache[toggle +
135 static void twopoint_repeat(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
141 *dstC++ = 0;
145 *dstC++ = cache[toggle +
152 static void twopoint_mirror(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
158 *dstC++ = 0;
162 *dstC++ = cache[toggle +
203 SkPMColor* SK_RESTRICT dstC = dstCParam;
237 (*shadeProc)(&fRec, dstC, cache, toggle, count);
245 (*shadeProc)(&fRec, dstC, cache, toggle, 1);
249 dstC += 1;