/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGResourceClipper.cpp | 113 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/ |
D | GraphicsContextOpenVG.cpp | 197 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/ |
D | GrClipMaskManager.cpp | 631 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/ |
D | SkBBoxHierarchyRecord.cpp | 93 bool SkBBoxHierarchyRecord::clipPath(const SkPath& path, in clipPath() function in SkBBoxHierarchyRecord 97 return INHERITED::clipPath(path, op, doAntiAlias); in clipPath()
|
D | SkBBoxHierarchyRecord.h | 43 virtual bool clipPath(const SkPath& path,
|
/external/skia/legacy/src/utils/ |
D | SkNWayCanvas.cpp | 144 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()
|
D | SkProxyCanvas.cpp | 65 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()
|
D | SkDeferredCanvas.cpp | 267 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/ |
D | SkDrawClip.cpp | 36 maker.fCanvas->clipPath(path->fPath); in draw()
|
/external/skia/legacy/src/animator/ |
D | SkDrawClip.cpp | 36 maker.fCanvas->clipPath(path->fPath); in draw()
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
D | PlatformGraphicsContextSkia.cpp | 170 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/ |
D | simpleaaclip.cpp | 109 canvas->clipPath(fBasePath, SkRegion::kReplace_Op, true); in drawPathsOped() 110 canvas->clipPath(fRectPath, op, true); in drawPathsOped()
|
D | distantclip.cpp | 47 rec->clipPath(p, SkRegion::kIntersect_Op, true); in onDraw()
|
D | complexclip.cpp | 129 canvas->clipPath(clipA, SkRegion::kIntersect_Op, fDoAAClip); in onDraw() 130 canvas->clipPath(clipB, gOps[op].fOp, fDoAAClip); in onDraw()
|
D | samplerstress.cpp | 121 canvas->clipPath(path, SkRegion::kReplace_Op, true); // AA is on in onDraw()
|
/external/skia/src/utils/ |
D | SkNWayCanvas.cpp | 155 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()
|
D | SkProxyCanvas.cpp | 69 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/ |
D | SkPDFDevice.cpp | 317 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/ |
D | ANPCanvasInterface.cpp | 69 canvas->skcanvas->clipPath(*path); in anp_clipPath() 181 ASSIGN(i, clipPath); in ANPCanvasInterfaceV0_Init()
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | InspectorCanvas.h | 55 virtual bool clipPath(const SkPath&, SkRegion::Op) { in clipPath() function
|
D | InstrumentedPlatformCanvas.h | 111 virtual bool clipPath(const SkPath& path, SkRegion::Op op) in clipPath() function 115 return SkCanvas::clipPath(path, op); in clipPath()
|
/external/skia/bench/ |
D | AAClipBench.cpp | 67 canvas->clipPath(fClipPath, SkRegion::kReplace_Op, fDoAA); in onDraw() 141 canvas->clipPath(path, in recurse()
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
D | PlatformContextSkia.cpp | 306 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/ |
D | svgtags.in | 21 clipPath
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | GLES2Canvas.h | 77 void clipPath(const Path&);
|