Lines Matching refs:t_l
349 SkJumper_GradientCtx* ctx, size_t stop, float t_l, float t_r, SkPM4f c_l, SkPM4f c_r) { in init_stop_pos() argument
352 (c_r.r() - c_l.r()) / (t_r - t_l), in init_stop_pos()
353 (c_r.g() - c_l.g()) / (t_r - t_l), in init_stop_pos()
354 (c_r.b() - c_l.b()) / (t_r - t_l), in init_stop_pos()
355 (c_r.a() - c_l.a()) / (t_r - t_l), in init_stop_pos()
358 c_l.r() - Fs.r()*t_l, in init_stop_pos()
359 c_l.g() - Fs.g()*t_l, in init_stop_pos()
360 c_l.b() - Fs.b()*t_l, in init_stop_pos()
361 c_l.a() - Fs.a()*t_l, in init_stop_pos()
363 ctx->ts[stop] = t_l; in init_stop_pos()
465 float t_l = fOrigPos[firstStop]; in onAppendStages() local
472 if (t_l < t_r) { in onAppendStages()
473 init_stop_pos(ctx, stopCount, t_l, t_r, c_l, c_r); in onAppendStages()
476 t_l = t_r; in onAppendStages()
480 ctx->ts[stopCount] = t_l; in onAppendStages()