Home
last modified time | relevance | path

Searched defs:transform (Results 1 – 21 of 21) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSwShape.cpp54 static bool _outlineMoveTo(SwOutline& outline, const Point* to, const Matrix& transform, bool close… in _outlineMoveTo()
65 static void _outlineLineTo(SwOutline& outline, const Point* to, const Matrix& transform) in _outlineLineTo()
72 …Outline& outline, const Point* ctrl1, const Point* ctrl2, const Point* to, const Matrix& transform) in _outlineCubicTo()
104 static void _dashLineTo(SwDashStroke& dash, const Point* to, const Matrix& transform) in _dashLineTo()
165 …DashStroke& dash, const Point* ctrl1, const Point* ctrl2, const Point* to, const Matrix& transform) in _dashCubicTo()
226 static void _dashClose(SwDashStroke& dash, const Matrix& transform) in _dashClose()
329 static SwOutline* _genDashOutline(const RenderShape* rshape, const Matrix& transform, bool trimmed,… in _genDashOutline()
443 static bool _genOutline(SwShape* shape, const RenderShape* rshape, const Matrix& transform, SwMpool… in _genOutline()
499 bool shapePrepare(SwShape* shape, const RenderShape* rshape, const Matrix& transform, const SwBBox… in shapePrepare()
581 void shapeResetStroke(SwShape* shape, const RenderShape* rshape, const Matrix& transform) in shapeResetStroke()
[all …]
DtvgSwImage.cpp40 static bool _genOutline(SwImage* image, const Matrix& transform, SwMpool* mpool, unsigned tid) in _genOutline()
78 bool imagePrepare(SwImage* image, const Matrix& transform, const SwBBox& clipRegion, SwBBox& render… in imagePrepare()
DtvgLottieBuilder.h41 Matrix transform; member
61 Matrix* transform = nullptr; member
DtvgFill.cpp138 Result Fill::transform(const Matrix& m) noexcept in transform() function in Fill
148 Matrix Fill::transform() const noexcept in transform() function in Fill
DtvgSwRenderer.cpp48 Matrix transform; member
690 void* SwRenderer::prepareCommon(SwTask* task, const Matrix& transform, const Array<RenderData>& cli… in prepareCommon()
729 RenderData SwRenderer::prepare(RenderSurface* surface, RenderData data, const Matrix& transform, Ar… in prepare()
742 RenderData SwRenderer::prepare(const RenderShape& rshape, RenderData data, const Matrix& transform,… in prepare()
DtvgLottieBuilder.cpp107 static bool _updateTransform(LottieTransform* transform, float frameNo, bool autoOrient, Matrix& ma… in _updateTransform()
157 auto transform = layer->transform; in updateTransform() local
178 auto transform = static_cast<LottieTransform*>(*child); in updateTransform() local
386 … float w, float h, float r, const LottieOffsetModifier* offsetPath, Matrix* transform, bool clockw… in _appendRect()
497 …oat cy, float rx, float ry, const LottieOffsetModifier* offsetPath, Matrix* transform, bool clockw… in _appendCircle()
576 static void _updateStar(TVG_UNUSED LottieGroup* parent, LottiePolyStar* star, Matrix* transform, co… in _updateStar()
704 static void _updatePolygon(LottieGroup* parent, LottiePolyStar* star, Matrix* transform, const Lott… in _updatePolygon()
DtvgFill.h57 Matrix* transform = nullptr; member
DtvgPaint.cpp422 Result Paint::transform(const Matrix& m) noexcept in transform() function in Paint
429 Matrix Paint::transform() noexcept in transform() function in Paint
DtvgPaint.h111 bool transform(const Matrix& m) in transform() function
DtvgSwMath.cpp269 SwPoint mathTransform(const Point* to, const Matrix& transform) in mathTransform()
DtvgSwFill.cpp213 bool _prepareLinear(SwFill* fill, const LinearGradient* linear, const Matrix& transform) in _prepareLinear()
258 bool _prepareRadial(SwFill* fill, const RadialGradient* radial, const Matrix& transform) in _prepareRadial()
828 bool fillGenColorTable(SwFill* fill, const Fill* fdata, const Matrix& transform, SwSurface* surface… in fillGenColorTable()
DtvgSwRaster.cpp787 static bool _scaledRleImage(SwSurface* surface, const SwImage* image, const Matrix& transform, cons… in _scaledRleImage()
1023 static bool _scaledImage(SwSurface* surface, const SwImage* image, const Matrix& transform, const S… in _scaledImage()
1245 static bool _rasterImage(SwSurface* surface, SwImage* image, const Matrix& transform, const SwBBox&… in _rasterImage()
1795 bool rasterImage(SwSurface* surface, SwImage* image, const Matrix& transform, const SwBBox& bbox, u… in rasterImage()
DtvgSwStroke.cpp821 void strokeReset(SwStroke* stroke, const RenderShape* rshape, const Matrix& transform) in strokeReset()
DtvgSvgLoaderCommon.h454 Matrix* transform; member
515 Matrix* transform; member
DtvgSwRasterTexmap.h1114 static bool _rasterTexmapPolygon(SwSurface* surface, const SwImage* image, const Matrix& transform,… in _rasterTexmapPolygon()
DtvgSvgSceneBuilder.cpp471 …Data, SvgNode* node, Shape* shape, const Box& vBox, const string& svgPath, const Matrix* transform) in _appendClipShape()
DtvgLottieParser.cpp579 auto transform = new LottieTransform; in parseTransform() local
DtvgLottieProperty.h156 static void _copy(PathSet* pathset, Array<Point>& outPts, Matrix* transform) in _copy()
DtvgLottieExpressions.cpp156 static void _buildTransform(jerry_value_t context, float frameNo, LottieTransform* transform) in _buildTransform()
DtvgLottieModel.h771 LottieTransform* transform = nullptr; member
/lvgl-latest/tests/src/test_cases/draw/
Dtest_clip_corner.c17 static lv_obj_t * create_panel(int32_t radius, bool transform) in create_panel()