Home
last modified time | relevance | path

Searched refs:clipRule (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourceClipper.cpp89 WindRule clipRule = RULE_NONZERO; in tryPathOnlyClipping() local
113 clipRule = svgStyle->clipRule(); in tryPathOnlyClipping()
114 clipPath.setWindRule(clipRule); in tryPathOnlyClipping()
122 subPath.setWindRule(svgStyle->clipRule()); in tryPathOnlyClipping()
143 context->clipPath(clipPath, clipRule); in tryPathOnlyClipping()
280 WindRule newClipRule = style->svgStyle()->clipRule(); in asDisplayList()
288 newClipRule = renderer->style()->svgStyle()->clipRule(); in asDisplayList()
DRenderSVGShape.cpp340 fillRule = svgStyle->clipRule(); in nodeAtFloatPointInternal()
DSVGRenderTreeAsText.cpp300 writeIfNotDefault(ts, "clip rule", svgStyle->clipRule(), RULE_NONZERO); in writeStyle()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSVGCSSComputedStyleDeclaration.cpp111 return CSSPrimitiveValue::create(svgStyle->clipRule()); in getSVGPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext.cpp1483 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule) in clipPath() argument
1492 …SkPath::FillType temporaryFillType = clipRule == RULE_EVENODD ? SkPath::kEvenOdd_FillType : SkPath… in clipPath()
1527 void GraphicsContext::canvasClip(const Path& pathToClip, WindRule clipRule) in canvasClip() argument
1536 …SkPath::FillType temporaryFillType = clipRule == RULE_EVENODD ? SkPath::kEvenOdd_FillType : SkPath… in canvasClip()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DSVGRenderStyle.h310 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; } in clipRule() function