Home
last modified time | relevance | path

Searched refs:clipPath (Results 1 – 25 of 87) sorted by relevance

1234

/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGResourceClipper.cpp113 Path clipPath = Path(); in pathOnlyClipping() local
138 if (clipPath.isEmpty()) { in pathOnlyClipping()
139 styled->toClipPath(clipPath); in pathOnlyClipping()
149 clipPath.transform(transform); in pathOnlyClipping()
152 if (clipPath.isEmpty()) in pathOnlyClipping()
153 clipPath.addRect(FloatRect()); in pathOnlyClipping()
154 context->clipPath(clipPath, clipRule); in pathOnlyClipping()
220 SVGClipPathElement* clipPath = static_cast<SVGClipPathElement*>(node()); in drawContentIntoMaskImage() local
221 if (clipPath->clipPathUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) { in drawContentIntoMaskImage()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DGraphicsContextOpenVG.cpp197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule) in clipPath() function in WebCore::GraphicsContext
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule); in clipPath()
380 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule); in clip()
393 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule); in clipOut()
427 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule); in clipOut()
450 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule); in addInnerRoundedRectClip()
/external/skia/src/gpu/
DGrClipMaskManager.cpp631 SkTCopyOnFirstWrite<SkPath> clipPath; in createStencilClipMask() local
637 clipPath.init(element->getPath()); in createStencilClipMask()
638 fillInverted = clipPath->isInverseFillType(); in createStencilClipMask()
640 clipPath.writable()->toggleInverseFillType(); in createStencilClipMask()
642 pr = this->getContext()->getPathRenderer(*clipPath, in createStencilClipMask()
686 pr->drawPath(*clipPath, stroke, fGpu, false); in createStencilClipMask()
688 pr->stencilPath(*clipPath, stroke, fGpu); in createStencilClipMask()
705 pr->drawPath(*clipPath, stroke, fGpu, false); in createStencilClipMask()
966 SkPath clipPath = element->getPath(); in createSoftwareClipMask() local
967 clipPath.toggleInverseFillType(); in createSoftwareClipMask()
[all …]
/external/skia/src/core/
DSkBBoxHierarchyRecord.cpp93 bool SkBBoxHierarchyRecord::clipPath(const SkPath& path, in clipPath() function in SkBBoxHierarchyRecord
97 return INHERITED::clipPath(path, op, doAntiAlias); in clipPath()
DSkBBoxHierarchyRecord.h43 virtual bool clipPath(const SkPath& path,
/external/skia/legacy/src/utils/
DSkNWayCanvas.cpp144 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath() function in SkNWayCanvas
147 iter->clipPath(path, op, doAA); in clipPath()
149 return this->INHERITED::clipPath(path, op, doAA); in clipPath()
DSkProxyCanvas.cpp65 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath() function in SkProxyCanvas
66 return fProxy->clipPath(path, op, doAA); in clipPath()
DSkDeferredCanvas.cpp267 bool SkDeferredCanvas::clipPath(const SkPath& path, in clipPath() function in SkDeferredCanvas
270 drawingCanvas()->clipPath(path, op, doAntiAlias); in clipPath()
271 return this->INHERITED::clipPath(path, op, doAntiAlias); in clipPath()
/external/skia/src/animator/
DSkDrawClip.cpp36 maker.fCanvas->clipPath(path->fPath); in draw()
/external/skia/legacy/src/animator/
DSkDrawClip.cpp36 maker.fCanvas->clipPath(path->fPath); in draw()
/external/webkit/Source/WebCore/platform/graphics/android/context/
DPlatformGraphicsContextSkia.cpp170 mCanvas->clipPath(path, SkRegion::kIntersect_Op, true); in addInnerRoundedRectClip()
185 return mCanvas->clipPath(*path.platformPath(), SkRegion::kIntersect_Op, true); in clip()
206 return mCanvas->clipPath(*path.platformPath(), SkRegion::kDifference_Op); in clipOut()
209 bool PlatformGraphicsContextSkia::clipPath(const Path& pathToClip, WindRule clipRule) in clipPath() function in WebCore::PlatformGraphicsContextSkia
214 return mCanvas->clipPath(path); in clipPath()
/external/skia/gm/
Dsimpleaaclip.cpp109 canvas->clipPath(fBasePath, SkRegion::kReplace_Op, true); in drawPathsOped()
110 canvas->clipPath(fRectPath, op, true); in drawPathsOped()
Ddistantclip.cpp47 rec->clipPath(p, SkRegion::kIntersect_Op, true); in onDraw()
Dcomplexclip.cpp129 canvas->clipPath(clipA, SkRegion::kIntersect_Op, fDoAAClip); in onDraw()
130 canvas->clipPath(clipB, gOps[op].fOp, fDoAAClip); in onDraw()
Dsamplerstress.cpp121 canvas->clipPath(path, SkRegion::kReplace_Op, true); // AA is on in onDraw()
/external/skia/src/utils/
DSkNWayCanvas.cpp155 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath() function in SkNWayCanvas
158 iter->clipPath(path, op, doAA); in clipPath()
160 return this->INHERITED::clipPath(path, op, doAA); in clipPath()
DSkProxyCanvas.cpp69 bool SkProxyCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) { in clipPath() function in SkProxyCanvas
70 return fProxy->clipPath(path, op, doAA); in clipPath()
/external/skia/src/pdf/
DSkPDFDevice.cpp317 static void emit_clip(SkPath* clipPath, SkRect* clipRect, in emit_clip() argument
319 SkASSERT(clipPath || clipRect); in emit_clip()
322 if (clipPath) { in emit_clip()
323 SkPDFUtils::EmitPath(*clipPath, SkPaint::kFill_Style, contentStream); in emit_clip()
324 clipFill = clipPath->getFillType(); in emit_clip()
380 SkPath clipPath; in updateClip() local
381 SkAssertResult(clipRegion.getBoundaryPath(&clipPath)); in updateClip()
382 emit_clip(&clipPath, NULL, fContentStream); in updateClip()
1351 SkPath clipPath; in setUpContentEntry() local
1352 clipRegion.getBoundaryPath(&clipPath); in setUpContentEntry()
[all …]
/external/webkit/Source/WebKit/android/plugins/
DANPCanvasInterface.cpp69 canvas->skcanvas->clipPath(*path); in anp_clipPath()
181 ASSIGN(i, clipPath); in ANPCanvasInterfaceV0_Init()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DInspectorCanvas.h55 virtual bool clipPath(const SkPath&, SkRegion::Op) { in clipPath() function
DInstrumentedPlatformCanvas.h111 virtual bool clipPath(const SkPath& path, SkRegion::Op op) in clipPath() function
115 return SkCanvas::clipPath(path, op); in clipPath()
/external/skia/bench/
DAAClipBench.cpp67 canvas->clipPath(fClipPath, SkRegion::kReplace_Op, fDoAA); in onDraw()
141 canvas->clipPath(path, in recurse()
/external/webkit/Source/WebCore/platform/graphics/skia/
DPlatformContextSkia.cpp306 void PlatformContextSkia::clipPathAntiAliased(const SkPath& clipPath) in clipPathAntiAliased() argument
313 m_state->m_antiAliasClipPaths.append(clipPath); in clipPathAntiAliased()
316 SkRect bounds = clipPath.getBounds(); in clipPathAntiAliased()
572 m_canvas->clipPath(path); in canvasClipPath()
/external/webkit/Source/WebCore/svg/
Dsvgtags.in21 clipPath
/external/webkit/Source/WebCore/platform/graphics/chromium/
DGLES2Canvas.h77 void clipPath(const Path&);

1234