HomeSort by relevance Sort by last modified time
    Searched refs:clipRule (Results 1 - 19 of 19) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceClipper.cpp 112 WindRule clipRule = RULE_NONZERO;
117 // visible shape, the additive clipping may not work, caused by the clipRule. EvenOdd
140 clipRule = svgStyle->clipRule();
154 context->clipPath(clipPath, clipRule);
236 WindRule newClipRule = style->svgStyle()->clipRule();
244 newClipRule = renderer->style()->svgStyle()->clipRule();
271 // In the case of a <use> element, we obtained its renderere above, to retrieve its clipRule.
RenderSVGPath.cpp 269 fillRule = svgStyle->clipRule();
SVGRenderTreeAsText.cpp 368 writeIfNotDefault(ts, "clip rule", svgStyle->clipRule(), RULE_NONZERO);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextRecording.h 86 virtual void clipPath(const Path& pathToClip, WindRule clipRule);
PlatformGraphicsContextSkia.h 70 virtual void clipPath(const Path& pathToClip, WindRule clipRule);
GraphicsContextAndroid.cpp 291 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule)
296 platformContext()->clipPath(pathToClip, clipRule);
PlatformGraphicsContextRecording.cpp 239 void PlatformGraphicsContextRecording::clipPath(const Path& pathToClip, WindRule clipRule)
242 operation->setWindRule(clipRule);
PlatformGraphicsContext.h 100 virtual void clipPath(const Path& pathToClip, WindRule clipRule) = 0;
PlatformGraphicsContextSkia.cpp 207 void PlatformGraphicsContextSkia::clipPath(const Path& pathToClip, WindRule clipRule)
210 path.setFillType(clipRule == RULE_EVENODD
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.h 118 void clipPath(const Path&, PainterOpenVG::ClipOperation, WindRule clipRule = RULE_NONZERO);
GraphicsContextOpenVG.cpp 197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule);
PainterOpenVG.cpp 788 void PainterOpenVG::clipPath(const Path& path, PainterOpenVG::ClipOperation maskOp, WindRule clipRule)
812 vgSeti(VG_FILL_RULE, toVGFillRule(clipRule));
    [all...]
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 82 return CSSPrimitiveValue::create(svgStyle->clipRule());
SVGCSSStyleSelector.cpp 198 HANDLE_INHERIT_AND_INITIAL(clipRule, ClipRule)
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 283 WindRule clipRule() const { return (WindRule) svg_inherited_flags._clipRule; }
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 596 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
603 cairo_set_fill_rule(cr, clipRule == RULE_EVENODD ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 414 void GraphicsContext::clipPath(const Path& pathToClip, WindRule clipRule)
426 path.setFillType(clipRule == RULE_EVENODD ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 851 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
864 if (clipRule == RULE_EVENODD)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 796 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
803 platformPath.setFillRule(clipRule == RULE_EVENODD ? Qt::OddEvenFill : Qt::WindingFill);
    [all...]

Completed in 353 milliseconds