Searched refs:FillRule (Results 1 – 15 of 15) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgCssStyle.cpp | 96 if (((from->fill.flags & SvgFillFlags::FillRule) && !(to->flags & SvgStyleFlags::FillRule)) || in _copyStyle() 97 … _isImportanceApplicable(to->flagsImportance, from->flagsImportance, SvgStyleFlags::FillRule)) { in _copyStyle() 99 to->fill.flags = (to->fill.flags | SvgFillFlags::FillRule); in _copyStyle() 100 to->flags = (to->flags | SvgStyleFlags::FillRule); in _copyStyle() 101 if (from->flagsImportance & SvgStyleFlags::FillRule) { in _copyStyle() 102 to->flagsImportance = (to->flagsImportance | SvgStyleFlags::FillRule); in _copyStyle()
|
D | tvgSvgLoaderCommon.h | 82 FillRule = 0x08, enumerator 131 FillRule = 0x04, enumerator 475 FillRule fillRule;
|
D | tvgLottieModel.h | 556 FillRule rule = FillRule::Winding; 618 FillRule rule = FillRule::Winding;
|
D | tvgRender.h | 194 FillRule rule = FillRule::Winding;
|
D | tvgLottieParser.h | 51 FillRule getFillRule();
|
D | thorvg.h | 154 enum class FillRule enum 1108 Result fill(FillRule r) noexcept; 1160 FillRule fillRule() const noexcept;
|
D | tvgShape.cpp | 420 Result Shape::fill(FillRule r) noexcept in fill() 428 FillRule Shape::fillRule() const noexcept in fillRule()
|
D | tvgSvgLoader.cpp | 347 FillRule fillRule; 350 { FillRule::EvenOdd, "evenodd" } 354 _PARSE_TAG(FillRule, fillRule, FillRule, fillRuleTags, FillRule::Winding) in _PARSE_TAG() argument 1109 node->style->fill.flags = (node->style->fill.flags | SvgFillFlags::FillRule); in _handleFillRuleAttr() 1218 STYLE_DEF(fill-rule, FillRule, SvgStyleFlags::FillRule), 1435 node->style->fill.fillRule = FillRule::Winding; in _createNode() 2991 if (!(child->fill.flags & SvgFillFlags::FillRule)) { in _styleInherit() 3065 if (from->fill.flags & SvgFillFlags::FillRule) { in _styleCopy()
|
D | tvgLottieParser.cpp | 120 FillRule LottieParser::getFillRule() in getFillRule() 123 case 1: return FillRule::Winding; in getFillRule() 124 default: return FillRule::EvenOdd; in getFillRule()
|
D | tvgShape.h | 397 rs.rule = FillRule::Winding; in reset()
|
D | tvgSwRle.cpp | 318 if (rw.outline->fillRule == FillRule::EvenOdd) { in _horizLine()
|
D | tvgSwCommon.h | 109 FillRule fillRule;
|
D | tvgCapi.cpp | 494 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->fill((FillRule)rule); in tvg_shape_set_fill_rule()
|
D | tvgSvgSceneBuilder.cpp | 351 vg->fill((tvg::FillRule)style->fill.fillRule); in _applyProperty()
|
/lvgl-latest/src/others/vg_lite_tvg/ |
D | vg_lite_tvg.cpp | 297 static FillRule fill_rule_conv(vg_lite_fill_t fill); 2187 static FillRule fill_rule_conv(vg_lite_fill_t fill) in fill_rule_conv() 2190 return FillRule::EvenOdd; in fill_rule_conv() 2193 return FillRule::Winding; in fill_rule_conv()
|