Searched refs:LoopMode (Results 1 – 2 of 2) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieProperty.h | 134 …enum LoopMode : uint8_t { None = 0, InCycle = 1, InPingPong, InOffset, InContinue, OutCycle, OutPi… enum 146 LoopMode mode = None; 233 case LottieExpression::LoopMode::InCycle: { in _loop() 236 case LottieExpression::LoopMode::InPingPong: { in _loop() 242 case LottieExpression::LoopMode::OutCycle: { in _loop() 245 case LottieExpression::LoopMode::OutPingPong: { in _loop() 329 … if (exp->loop.mode != LottieExpression::LoopMode::None) frameNo = _loop(frames, frameNo, exp); in operator() 493 … if (exp->loop.mode != LottieExpression::LoopMode::None) frameNo = _loop(frames, frameNo, exp); in operator() 574 … if (exp->loop.mode != LottieExpression::LoopMode::None) frameNo = _loop(frames, frameNo, exp); in operator() 708 … if (exp->loop.mode != LottieExpression::LoopMode::None) frameNo = _loop(frames, frameNo, exp); in operator()
|
D | tvgLottieExpressions.cpp | 827 exp->loop.mode = LottieExpression::LoopMode::OutCycle; in _loopOutCommon() 831 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::OutCycle; in _loopOutCommon() 832 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::OutPingPong; in _loopOutCommon() 833 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::OutOffset; in _loopOutCommon() 834 … else if (!strcmp(name, EXP_CONTINUE)) exp->loop.mode = LottieExpression::LoopMode::OutContinue; in _loopOutCommon() 838 …if (exp->loop.mode != LottieExpression::LoopMode::OutCycle && exp->loop.mode != LottieExpression::… in _loopOutCommon() 879 exp->loop.mode = LottieExpression::LoopMode::InCycle; in _loopInCommon() 883 if (!strcmp(name, EXP_CYCLE)) exp->loop.mode = LottieExpression::LoopMode::InCycle; in _loopInCommon() 884 … else if (!strcmp(name, EXP_PINGPONG)) exp->loop.mode = LottieExpression::LoopMode::InPingPong; in _loopInCommon() 885 else if (!strcmp(name, EXP_OFFSET)) exp->loop.mode = LottieExpression::LoopMode::InOffset; in _loopInCommon() [all …]
|