Searched defs:fillRule (Results 1 - 7 of 7) sorted by relevance

/external/skia/src/svg/
H A DSkSVGPath.cpp39 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule); local
40 if (fillRule.size() > 0)
41 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGPath.cpp81 bool RenderSVGPath::fillContains(const FloatPoint& point, bool requiresFill, WindRule fillRule) argument
90 return m_path.contains(point, fillRule);
267 WindRule fillRule = svgStyle->fillRule(); local
269 fillRule = svgStyle->clipRule();
271 || (hitRules.canHitFill && (svgStyle->hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule))) {
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h172 , fillRule(RULE_NONZERO)
210 WindRule fillRule; member in struct:WebCore::GraphicsContextState
251 WindRule fillRule() const;
H A DGraphicsContext.cpp202 WindRule GraphicsContext::fillRule() const function in class:WebCore::GraphicsContext
204 return m_state.fillRule;
207 void GraphicsContext::setFillRule(WindRule fillRule) argument
209 m_state.fillRule = fillRule;
638 WindRule oldFillRule = fillRule();
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPainterOpenVG.cpp79 static VGFillRule toVGFillRule(WindRule fillRule) argument
81 return fillRule == RULE_EVENODD ? VG_EVEN_ODD : VG_NON_ZERO;
717 void PainterOpenVG::drawPath(const Path& path, VGbitfield specifiedPaintModes, WindRule fillRule) argument
734 vgSeti(VG_FILL_RULE, toVGFillRule(fillRule));
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextCG.cpp488 bool useEOFill = state.fillRule == RULE_EVENODD;
540 static inline void fillPathWithFillRule(CGContextRef context, WindRule fillRule) argument
542 if (fillRule == RULE_EVENODD)
566 if (fillRule() == RULE_EVENODD)
580 if (fillRule() == RULE_EVENODD)
597 fillPathWithFillRule(context, fillRule());
803 WindRule oldFillRule = fillRule();
/external/webkit/Source/WebCore/rendering/style/
H A DSVGRenderStyle.h287 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; } function in class:WebCore::SVGRenderStyle

Completed in 970 milliseconds