Searched defs:clipPath (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/
H A DSnapshot.cpp80 void Snapshot::clipPath(const SkPath& path, SkClipOp op) { function in class:android::uirenderer::Snapshot
H A DCanvasState.cpp203 bool CanvasState::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::CanvasState
204 mSnapshot->clipPath(*path, op);
H A DRenderNode.cpp544 SkPath clipPath; local
545 clipPath.addRect(clipRect);
546 Op(*outlinePath, clipPath, kIntersect_SkPathOp, &mClippedOutlineCache.clippedOutline);
H A DRecordingCanvas.cpp232 bool RecordingCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::RecordingCanvas
233 return mState.clipPath(path, op);
H A DSkiaCanvas.cpp234 canvas->clipPath(*mPath.get(), mOp);
401 bool SkiaCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::SkiaCanvas
403 mCanvas->clipPath(*path, op);
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp207 static jboolean clipPath(jlong canvasHandle, jlong pathHandle, function in namespace:android::CanvasJNI
210 bool nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, opHandleToClipOp(opHandle));
623 {"nClipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java387 * clipPath will all operate as usual, but when the balancing call to
405 * clipPath will all operate as usual, but when the balancing call to
999 * recommended alternative calls are {@link #clipPath(Path)} and
1006 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { method in class:Canvas
1017 public boolean clipPath(@NonNull Path path) { method in class:Canvas
1018 return clipPath(path, Region.Op.INTERSECT);
1028 return clipPath(path, Region.Op.DIFFERENCE);
1033 * clipRect() and clipPath() which transform their arguments by the
1053 * clipRect() and clipPath() which transform their arguments by the

Completed in 270 milliseconds