Lines Matching refs:Fs
218 static void add_stop_color(SkRasterPipeline_GradientCtx* ctx, size_t stop, SkPMColor4f Fs, SkPMColo… in add_stop_color() argument
219 (ctx->fs[0])[stop] = Fs.fR; in add_stop_color()
220 (ctx->fs[1])[stop] = Fs.fG; in add_stop_color()
221 (ctx->fs[2])[stop] = Fs.fB; in add_stop_color()
222 (ctx->fs[3])[stop] = Fs.fA; in add_stop_color()
238 SkPMColor4f Fs = { in init_stop_evenly() local
245 c_l.fR - Fs.fR*(stop/gapCount), in init_stop_evenly()
246 c_l.fG - Fs.fG*(stop/gapCount), in init_stop_evenly()
247 c_l.fB - Fs.fB*(stop/gapCount), in init_stop_evenly()
248 c_l.fA - Fs.fA*(stop/gapCount), in init_stop_evenly()
250 add_stop_color(ctx, stop, Fs, Bs); in init_stop_evenly()
258 SkPMColor4f Fs = { in init_stop_pos() local
265 c_l.fR - Fs.fR*t_l, in init_stop_pos()
266 c_l.fG - Fs.fG*t_l, in init_stop_pos()
267 c_l.fB - Fs.fB*t_l, in init_stop_pos()
268 c_l.fA - Fs.fA*t_l, in init_stop_pos()
271 add_stop_color(ctx, stop, Fs, Bs); in init_stop_pos()