Searched defs:clipPath (Results 1 - 6 of 6) sorted by path

/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp206 static jboolean clipPath(jlong canvasHandle, jlong pathHandle, function in namespace:android::CanvasJNI
209 bool nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, opHandleToClipOp(opHandle));
604 {"nClipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java379 * clipPath will all operate as usual, but when the balancing call to
397 * clipPath will all operate as usual, but when the balancing call to
938 * recommended alternative calls are {@link #clipPath(Path)} and
942 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { method in class:Canvas
952 public boolean clipPath(@NonNull Path path) { method in class:Canvas
953 return clipPath(path, Region.Op.INTERSECT);
963 return clipPath(path, Region.Op.DIFFERENCE);
968 * clipRect() and clipPath() which transform their arguments by the
988 * clipRect() and clipPath() which transform their arguments by the
/frameworks/base/libs/hwui/
H A DCanvasState.cpp210 bool CanvasState::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::CanvasState
211 mSnapshot->clipPath(*path, op);
H A DRecordingCanvas.cpp240 bool RecordingCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::RecordingCanvas
241 return mState.clipPath(path, op);
H A DSkiaCanvas.cpp223 canvas->clipPath(*mPath.get(), mOp);
392 bool SkiaCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::SkiaCanvas
394 mCanvas->clipPath(*path, op);
H A DSnapshot.cpp80 void Snapshot::clipPath(const SkPath& path, SkClipOp op) { function in class:android::uirenderer::Snapshot

Completed in 5162 milliseconds