HomeSort by relevance Sort by last modified time
    Searched refs:fillRule (Results 1 - 25 of 32) sorted by null

1 2

  /external/skia/src/svg/
SkSVGPath.cpp 31 SkString& fillRule = parser.getPaintLast(SkSVGPaint::kFillRule);
32 if (fillRule.size() > 0)
33 parser._addAttribute("fillType", fillRule.equals("evenodd") ? "evenOdd" : "winding");
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 144 m_data->drawPath(path, VG_FILL_PATH, m_state.fillRule);
152 m_data->drawPath(path, VG_STROKE_PATH, m_state.fillRule);
380 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
393 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
427 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
450 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
PainterOpenVG.h 115 void drawPath(const Path&, VGbitfield paintModes = (VG_STROKE_PATH | VG_FILL_PATH), WindRule fillRule = RULE_NONZERO);
PainterOpenVG.cpp 79 static VGFillRule toVGFillRule(WindRule fillRule)
81 return fillRule == RULE_EVENODD ? VG_EVEN_ODD : VG_NON_ZERO;
717 void PainterOpenVG::drawPath(const Path& path, VGbitfield specifiedPaintModes, WindRule fillRule)
734 vgSeti(VG_FILL_RULE, toVGFillRule(fillRule));
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGPath.cpp 81 bool RenderSVGPath::fillContains(const FloatPoint& point, bool requiresFill, WindRule fillRule)
90 return m_path.contains(point, fillRule);
267 WindRule fillRule = svgStyle->fillRule();
269 fillRule = svgStyle->clipRule();
271 || (hitRules.canHitFill && (svgStyle->hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill, fillRule))) {
RenderSVGPath.h 51 bool fillContains(const FloatPoint&, bool requiresFill = true, WindRule fillRule = RULE_NONZERO);
RenderSVGResourceSolidColor.cpp 59 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO);
RenderSVGResourceGradient.cpp 220 context->setFillRule(svgStyle->fillRule());
RenderSVGResourcePattern.cpp 156 context->setFillRule(svgStyle->fillRule());
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 93 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
GraphicsOperation.h 453 FillPath(const Path& pathToFill, WindRule fillRule)
454 : m_path(pathToFill), m_fillRule(fillRule) {}
PlatformGraphicsContext.h 125 virtual void fillPath(const Path& pathToFill, WindRule fillRule) = 0;
PlatformGraphicsContextRecording.h 134 virtual void fillPath(const Path& pathToFill, WindRule fillRule);
PlatformGraphicsContextSkia.cpp 479 void PlatformGraphicsContextSkia::fillPath(const Path& pathToFill, WindRule fillRule)
485 switch (fillRule) {
GraphicsContextAndroid.cpp 600 platformContext()->fillPath(pathToFill, fillRule());
PlatformGraphicsContextRecording.cpp 870 void PlatformGraphicsContextRecording::fillPath(const Path& pathToFill, WindRule fillRule)
872 appendDrawingOperation(NEW_OP(FillPath)(pathToFill, fillRule), pathToFill.boundingRect());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.cpp 202 WindRule GraphicsContext::fillRule() const
204 return m_state.fillRule;
207 void GraphicsContext::setFillRule(WindRule fillRule)
209 m_state.fillRule = fillRule;
640 WindRule oldFillRule = fillRule();
GraphicsContext.h 172 , fillRule(RULE_NONZERO)
210 WindRule fillRule;
251 WindRule fillRule() const;
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 488 bool useEOFill = state.fillRule == RULE_EVENODD;
540 static inline void fillPathWithFillRule(CGContextRef context, WindRule fillRule)
542 if (fillRule == RULE_EVENODD)
566 if (fillRule() == RULE_EVENODD)
580 if (fillRule() == RULE_EVENODD)
597 fillPathWithFillRule(context, fillRule());
803 WindRule oldFillRule = fillRule();
    [all...]
  /external/skia/include/device/xps/
SkXPSDevice.h 285 XPS_FILL_RULE fillRule);
  /external/webkit/Source/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 94 return CSSPrimitiveValue::create(svgStyle->fillRule());
SVGCSSStyleSelector.cpp 205 HANDLE_INHERIT_AND_INITIAL(fillRule, FillRule)
  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 104 Qt::FillRule savedRule = m_path.fillRule();
GraphicsContextQt.cpp 162 static inline Qt::FillRule toQtFillRule(WindRule rule)
497 platformPath.setFillRule(toQtFillRule(fillRule()));
549 platformPath.setFillRule(toQtFillRule(fillRule()));
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 287 WindRule fillRule() const { return (WindRule) svg_inherited_flags._fillRule; }

Completed in 452 milliseconds

1 2