Searched refs:clipPath (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClipRegion3Activity.java72 canvas.clipPath(mClipPath);
H A DClipRegionActivity.java85 canvas.clipPath(mClipPath);
H A DViewLayersActivity5.java79 canvas.clipPath(mClipPath);
/frameworks/base/libs/hwui/
H A DStatefulBaseRenderer.h89 virtual bool clipPath(const SkPath* path, SkRegion::Op op);
H A DStatefulBaseRenderer.cpp162 return StatefulBaseRenderer::clipPath(&path, op);
165 bool StatefulBaseRenderer::clipPath(const SkPath* path, SkRegion::Op op) { function in class:android::uirenderer::StatefulBaseRenderer
H A DRenderer.h173 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
H A DDisplayListRenderer.cpp169 bool DisplayListRenderer::clipPath(const SkPath* path, SkRegion::Op op) { function in class:android::uirenderer::DisplayListRenderer
172 return StatefulBaseRenderer::clipPath(path, op);
H A DDisplayListRenderer.h95 virtual bool clipPath(const SkPath* path, SkRegion::Op op);
H A DDisplayListOp.h573 renderer.clipPath(mPath, mOp);
/frameworks/base/include/private/graphics/
H A DCanvas.h79 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
/frameworks/base/core/jni/android/graphics/
H A DSkiaCanvas.cpp85 virtual bool clipPath(const SkPath* path, SkRegion::Op op);
185 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) { function in class:android::ClipCopier
186 m_dstCanvas->clipPath(path, op, antialias);
436 bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) { function in class:android::SkiaCanvas
437 mCanvas->clipPath(*path, op);
447 mCanvas->clipPath(rgnPath, op);
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp172 static jboolean clipPath(JNIEnv* env, jobject, jlong canvasHandle, jlong pathHandle, function in namespace:android::CanvasJNI
176 bool emptyClip = get_canvas(canvasHandle)->clipPath(path, op);
707 {"native_clipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
H A Dandroid_view_GLES20Canvas.cpp273 const bool result = renderer->clipPath(path, static_cast<SkRegion::Op>(op));
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java398 * clipPath will all operate as usual, but when the balancing call to
416 * clipPath will all operate as usual, but when the balancing call to
809 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { method in class:Canvas
819 public boolean clipPath(@NonNull Path path) { method in class:Canvas
820 return clipPath(path, Region.Op.INTERSECT);
825 * clipRect() and clipPath() which transform their arguments by the
843 * clipRect() and clipPath() which transform their arguments by the
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DStyledCornersBitmapDrawable.java230 canvas.clipPath(mClipPath);
/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java280 public boolean clipPath(Path path) { method in class:GLES20Canvas
285 public boolean clipPath(Path path, Region.Op op) { method in class:GLES20Canvas
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java954 canvas.clipPath(mRenderPath, Region.Op.REPLACE);

Completed in 4100 milliseconds