Home
last modified time | relevance | path

Searched refs:flagsImportance (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgSvgCssStyle.cpp47 _isImportanceApplicable(to->flagsImportance, from->flagsImportance, SvgStyleFlags::Color)) { in _copyStyle()
51 if (from->flagsImportance & SvgStyleFlags::Color) { in _copyStyle()
52 to->flagsImportance = (to->flagsImportance | SvgStyleFlags::Color); in _copyStyle()
56 … _isImportanceApplicable(to->flagsImportance, from->flagsImportance, SvgStyleFlags::PaintOrder)) { in _copyStyle()
59 if (from->flagsImportance & SvgStyleFlags::PaintOrder) { in _copyStyle()
60 to->flagsImportance = (to->flagsImportance | SvgStyleFlags::PaintOrder); in _copyStyle()
64 … _isImportanceApplicable(to->flagsImportance, from->flagsImportance, SvgStyleFlags::Display)) { in _copyStyle()
67 if (from->flagsImportance & SvgStyleFlags::Display) { in _copyStyle()
68 to->flagsImportance = (to->flagsImportance | SvgStyleFlags::Display); in _copyStyle()
73 _isImportanceApplicable(to->flagsImportance, from->flagsImportance, SvgStyleFlags::Fill)) { in _copyStyle()
[all …]
DtvgSvgLoaderCommon.h502 …SvgStyleFlags flagsImportance; //indicates the importance of the flag - if set, higher priority is… member
DtvgSvgLoader.cpp1262 if (importance || !(node->style->flagsImportance & styleTags[i].flag)) { in _parseStyleAttr()
1270 node->style->flagsImportance = (node->style->flags | styleTags[i].flag); in _parseStyleAttr()