Lines Matching refs:frameNo
116 void LottieTextRange::range(float frameNo, float totalLen, float& start, float& end) in range() argument
119 auto offset = this->offset(frameNo) / divisor; in range()
120 start = nearbyintf(this->start(frameNo) / divisor) + offset; in range()
121 end = nearbyintf(this->end(frameNo) / divisor) + offset; in range()
162 void LottieTrimpath::segment(float frameNo, float& start, float& end, LottieExpressions* exps) in segment() argument
164 start = this->start(frameNo, exps) * 0.01f; in segment()
166 end = this->end(frameNo, exps) * 0.01f; in segment()
169 auto o = fmodf(this->offset(frameNo, exps), 360.0f) / 360.0f; //0 ~ 1 in segment()
276 Fill* LottieGradient::fill(float frameNo, LottieExpressions* exps) in fill() argument
278 auto opacity = this->opacity(frameNo); in fill()
282 auto s = start(frameNo, exps); in fill()
283 auto e = end(frameNo, exps); in fill()
297 auto progress = this->height(frameNo, exps) * 0.01f; in fill()
304 auto angle = deg2rad((startAngle + this->angle(frameNo, exps))); in fill()
314 colorStops(frameNo, fill, exps); in fill()
460 float LottieLayer::remap(LottieComposition* comp, float frameNo, LottieExpressions* exp) in remap() argument
463 frameNo = comp->frameAtTime(timeRemap(frameNo, exp)); in remap()
465 frameNo -= startFrame; in remap()
467 return (frameNo / timeStretch); in remap()