Lines Matching defs:Fs
221 static void add_stop_color(SkRasterPipeline_GradientCtx* ctx, size_t stop, SkPMColor4f Fs, SkPMColor4f Bs) {
222 (ctx->fs[0])[stop] = Fs.fR;
223 (ctx->fs[1])[stop] = Fs.fG;
224 (ctx->fs[2])[stop] = Fs.fB;
225 (ctx->fs[3])[stop] = Fs.fA;
242 SkPMColor4f Fs = {
249 c_l.fR - Fs.fR*(stop/gapCount),
250 c_l.fG - Fs.fG*(stop/gapCount),
251 c_l.fB - Fs.fB*(stop/gapCount),
252 c_l.fA - Fs.fA*(stop/gapCount),
254 add_stop_color(ctx, stop, Fs, Bs);
262 SkPMColor4f Fs = {
269 c_l.fR - Fs.fR*t_l,
270 c_l.fG - Fs.fG*t_l,
271 c_l.fB - Fs.fB*t_l,
272 c_l.fA - Fs.fA*t_l,
275 add_stop_color(ctx, stop, Fs, Bs);