Searched refs:pathset (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieExpressions.h | 123 if (auto pathset = static_cast<Property*>(jerry_object_get_native_ptr(bm_rt, nullptr))) { in result() local 124 (*pathset)(frameNo, cmds, pts, transform, roundness, offsetPath); in result()
|
D | tvgLottieProperty.h | 156 static void _copy(PathSet* pathset, Array<Point>& outPts, Matrix* transform) in _copy() argument 161 for (int i = 0; i < pathset->ptsCnt; ++i) { in _copy() 162 Point pt = pathset->pts[i]; in _copy() 167 inPts.data = pathset->pts; in _copy() 168 inPts.count = pathset->ptsCnt; in _copy() 175 static void _copy(PathSet* pathset, Array<PathCommand>& outCmds) in _copy() argument 178 inCmds.data = pathset->cmds; in _copy() 179 inCmds.count = pathset->cmdsCnt; in _copy()
|
D | tvgLottieModel.h | 112 LottiePathSet pathset; member 363 if (pathset.ix == ix) return &pathset; in property() 367 LottiePathSet pathset; member
|
D | tvgLottieExpressions.cpp | 652 jerry_object_set_native_ptr(obj, nullptr, &static_cast<LottiePath*>(target)->pathset); in _content() 960 auto pathset = jerry_object_get_native_ptr(arg1, nullptr); in _createPath() local 961 if (!pathset) { in _createPath() 969 jerry_object_set_native_ptr(obj, nullptr, pathset); in _createPath() 976 … auto pathset = static_cast<LottiePathSet*>(jerry_object_get_native_ptr(info->function, nullptr)); in _uniformPath() local 981 jerry_object_set_native_ptr(obj, nullptr, pathset); in _uniformPath()
|
D | tvgLottieBuilder.cpp | 565 …path->pathset(frameNo, P(shape)->rs.path.cmds, P(shape)->rs.path.pts, ctx->transform, ctx->roundne… in updatePath() 569 …if (path->pathset(frameNo, P(ctx->merging)->rs.path.cmds, P(ctx->merging)->rs.path.pts, ctx->trans… in updatePath() 1051 …if (static_cast<LottiePath*>(*p)->pathset(frameNo, P(shape)->rs.path.cmds, P(shape)->rs.path.pts, … in updateText() 1150 …pMask->pathset(frameNo, P(pShape)->rs.path.cmds, P(pShape)->rs.path.pts, nullptr, nullptr, nullptr… in updateMaskings() 1154 …pMask->pathset(frameNo, P(pShape)->rs.path.cmds, P(pShape)->rs.path.pts, nullptr, nullptr, &offset… in updateMaskings() 1182 …mask->pathset(frameNo, P(pShape)->rs.path.cmds, P(pShape)->rs.path.pts, nullptr, nullptr, nullptr,… in updateMaskings() 1189 …mask->pathset(frameNo, P(shape)->rs.path.cmds, P(shape)->rs.path.pts, nullptr, nullptr, nullptr, e… in updateMaskings()
|
D | tvgLottieParser.cpp | 707 else if (KEY_AS("ks")) getPathSet(path->pathset); in parsePath() 1237 else if (valid && KEY_AS("pt")) getPathSet(mask->pathset); in parseMask()
|