Searched refs:strokeColor (Results 1 – 10 of 10) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgShape.cpp | 333 pImpl->strokeColor(r, g, b, a); in stroke() 338 Result Shape::strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const noexcept in strokeColor() function in Shape 340 if (!pImpl->rs.strokeColor(r, g, b, a)) return Result::InsufficientCondition; in strokeColor()
|
D | tvgRender.h | 224 bool strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a) const in strokeColor() function
|
D | tvgLottieBuilder.cpp | 1095 auto strokeColor = (*s)->style.strokeColor(frameNo); in updateText() local 1097 …shape->stroke(strokeColor.rgb[0], strokeColor.rgb[1], strokeColor.rgb[2], (*s)->style.strokeOpacit… in updateText()
|
D | tvgShape.h | 268 void strokeColor(uint8_t r, uint8_t g, uint8_t b, uint8_t a) in strokeColor() function
|
D | thorvg.h | 1178 Result strokeColor(uint8_t* r, uint8_t* g, uint8_t* b, uint8_t* a = nullptr) const noexcept;
|
D | tvgSwRenderer.cpp | 292 if (task->rshape->strokeColor(&r, &g, &b, &a)) { in _renderStroke()
|
D | tvgLottieModel.h | 188 LottieColor strokeColor = RGB24{255, 255, 255};
|
D | tvgCapi.cpp | 384 return (Tvg_Result) reinterpret_cast<const Shape*>(paint)->strokeColor(r, g, b, a); in tvg_shape_get_stroke_color()
|
D | tvgSvgSceneBuilder.cpp | 869 … (shape->strokeColor(&r, &g, &b) == Result::Success && (r < 255 || g < 255 || b < 255))) { in _sceneBuildHelper()
|
D | tvgLottieParser.cpp | 1169 … else if (KEY_AS("sc")) parseProperty<LottieProperty::Type::Color>(selector->style.strokeColor); in parseTextRange()
|