Home
last modified time | relevance | path

Searched refs:strokeFill (Results 1 – 7 of 7) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgShape.cpp348 return pImpl->strokeFill(std::move(f)); in stroke()
352 const Fill* Shape::strokeFill() const noexcept in strokeFill() function in Shape
354 return pImpl->rs.strokeFill(); in strokeFill()
DtvgSwRenderer.cpp165 if (auto fill = rshape->strokeFill()) { in run()
289 if (auto strokeFill = task->rshape->strokeFill()) { in _renderStroke() local
290 rasterGradientStroke(surface, &task->shape, strokeFill, opacity); in _renderStroke()
DtvgRender.h236 const Fill* strokeFill() const in strokeFill() function
DtvgShape.h285 Result strokeFill(unique_ptr<Fill> f) in strokeFill() function
Dthorvg.h1185 const Fill* strokeFill() const noexcept;
DtvgCapi.cpp405 *gradient = (Tvg_Gradient*)(reinterpret_cast<const Shape*>(paint)->strokeFill()); in tvg_shape_get_stroke_gradient()
DtvgSvgSceneBuilder.cpp868 … if (shape->fill() || r < 255 || g < 255 || b < 255 || shape->strokeFill() || in _sceneBuildHelper()