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

1 2 3 4 5

  /external/skia/legacy/src/animator/
SkDrawClip.cpp 36 maker.fCanvas->clipPath(path->fPath);
  /external/skia/src/animator/
SkDrawClip.cpp 36 maker.fCanvas->clipPath(path->fPath);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceClipper.cpp 113 Path clipPath = Path();
138 if (clipPath.isEmpty()) {
139 styled->toClipPath(clipPath);
149 clipPath.transform(transform);
152 if (clipPath.isEmpty())
153 clipPath.addRect(FloatRect());
154 context->clipPath(clipPath, clipRule);
190 // clipPath can also be clipped by another clipPath
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 197 void GraphicsContext::clipPath(const Path& path, WindRule clipRule)
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule);
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 118 void clipPath(const Path&, PainterOpenVG::ClipOperation, WindRule clipRule = RULE_NONZERO);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Clipping.java 82 canvas.clipPath(mPath); // makes the clip empty
84 canvas.clipPath(mPath, Region.Op.REPLACE);
  /external/skia/src/core/
SkBBoxHierarchyRecord.cpp 93 bool SkBBoxHierarchyRecord::clipPath(const SkPath& path,
97 return INHERITED::clipPath(path, op, doAntiAlias);
SkBBoxHierarchyRecord.h 43 virtual bool clipPath(const SkPath& path,
  /external/skia/gm/
distantclip.cpp 47 rec->clipPath(p, SkRegion::kIntersect_Op, true);
64 // If the image is red, we erroneously decided the clipPath was empty and didn't record
samplerstress.cpp 121 canvas->clipPath(path, SkRegion::kReplace_Op, true); // AA is on
complexclip.cpp 129 canvas->clipPath(clipA, SkRegion::kIntersect_Op, fDoAAClip);
130 canvas->clipPath(clipB, gOps[op].fOp, fDoAAClip);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
InspectorCanvas.h 55 virtual bool clipPath(const SkPath&, SkRegion::Op) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion3Activity.java 72 canvas.clipPath(mClipPath);
ClipRegionActivity.java 85 canvas.clipPath(mClipPath);
  /external/skia/src/gpu/
GrClipMaskManager.cpp 631 SkTCopyOnFirstWrite<SkPath> clipPath;
637 clipPath.init(element->getPath());
638 fillInverted = clipPath->isInverseFillType();
640 clipPath.writable()->toggleInverseFillType();
642 pr = this->getContext()->getPathRenderer(*clipPath,
686 pr->drawPath(*clipPath, stroke, fGpu, false);
688 pr->stencilPath(*clipPath, stroke, fGpu);
705 pr->drawPath(*clipPath, stroke, fGpu, false);
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
MediaImageItem.java 794 clipSettings.clipPath = getDecodedImageFileName();
819 clipSettings.clipPath = getDecodedImageFileName();
858 clipSettings.clipPath = output;
866 clipSettings.clipPath = getDecodedImageFileName();
873 clipSettings.clipPath = getGeneratedImageClip();
911 clipSettings.clipPath = getDecodedImageFileName();
    [all...]
  /external/skia/legacy/src/utils/
SkNWayCanvas.cpp 144 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
147 iter->clipPath(path, op, doAA);
149 return this->INHERITED::clipPath(path, op, doAA);
  /external/skia/src/utils/
SkNWayCanvas.cpp 155 bool SkNWayCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
158 iter->clipPath(path, op, doAA);
160 return this->INHERITED::clipPath(path, op, doAA);
  /external/chromium/chrome/browser/chromeos/login/
rounded_view.h 64 canvas->AsCanvasSkia()->clipPath(GetClipPath());
  /external/skia/include/utils/
SkNWayCanvas.h 38 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
  /external/skia/legacy/include/utils/
SkNWayCanvas.h 37 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) SK_OVERRIDE;
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.h 70 virtual bool clipPath(const Path& pathToClip, WindRule clipRule);
RecordingContextCanvasProxy.h 64 virtual bool clipPath(const SkPath&, SkRegion::Op, bool) { /* NOT IMPLEMENTED*/ CRASH(); return -1; }
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GLES2Canvas.h 77 void clipPath(const Path&);
  /external/skia/bench/
AAClipBench.cpp 17 // This bench tests out AA/BW clipping via canvas' clipPath and clipRect calls
67 canvas->clipPath(fClipPath, SkRegion::kReplace_Op, fDoAA);
141 canvas->clipPath(path,

Completed in 351 milliseconds

1 2 3 4 5