Lines Matching refs:t_l
260 SkJumper_GradientCtx* ctx, size_t stop, float t_l, float t_r, SkPM4f c_l, SkPM4f c_r) { in init_stop_pos() argument
263 (c_r.r() - c_l.r()) / (t_r - t_l), in init_stop_pos()
264 (c_r.g() - c_l.g()) / (t_r - t_l), in init_stop_pos()
265 (c_r.b() - c_l.b()) / (t_r - t_l), in init_stop_pos()
266 (c_r.a() - c_l.a()) / (t_r - t_l), in init_stop_pos()
269 c_l.r() - Fs.r()*t_l, in init_stop_pos()
270 c_l.g() - Fs.g()*t_l, in init_stop_pos()
271 c_l.b() - Fs.b()*t_l, in init_stop_pos()
272 c_l.a() - Fs.a()*t_l, in init_stop_pos()
274 ctx->ts[stop] = t_l; in init_stop_pos()
380 float t_l = fOrigPos[firstStop]; in onAppendStages() local
387 SkASSERT(t_l <= t_r); in onAppendStages()
388 if (t_l < t_r) { in onAppendStages()
389 init_stop_pos(ctx, stopCount, t_l, t_r, c_l, c_r); in onAppendStages()
392 t_l = t_r; in onAppendStages()
396 ctx->ts[stopCount] = t_l; in onAppendStages()