Home | History | Annotate | Download | only in gradients

Lines Matching defs:t_l

256     SkRasterPipeline_GradientCtx* ctx, size_t stop, float t_l, float t_r, SkPMColor4f c_l, SkPMColor4f c_r) {
259 (c_r.fR - c_l.fR) / (t_r - t_l),
260 (c_r.fG - c_l.fG) / (t_r - t_l),
261 (c_r.fB - c_l.fB) / (t_r - t_l),
262 (c_r.fA - c_l.fA) / (t_r - t_l),
265 c_l.fR - Fs.fR*t_l,
266 c_l.fG - Fs.fG*t_l,
267 c_l.fB - Fs.fB*t_l,
268 c_l.fA - Fs.fA*t_l,
270 ctx->ts[stop] = t_l;
381 float t_l = fOrigPos[firstStop];
388 SkASSERT(t_l <= t_r);
389 if (t_l < t_r) {
390 init_stop_pos(ctx, stopCount, t_l, t_r, c_l, c_r);
393 t_l = t_r;
397 ctx->ts[stopCount] = t_l;