Home
last modified time | relevance | path

Searched refs:ClipPath (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/
DClipPath.java32 public class ClipPath extends PaintOperation { class
37 public ClipPath(int pathId, int regionOp) { in ClipPath() method in ClipPath
77 ClipPath op = new ClipPath(id, regionOp); in read()
/frameworks/base/libs/hwui/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp57 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(); in createEmptyClipPath()
62 VectorDrawable::ClipPath* srcClipPath = in createClipPath()
63 reinterpret_cast<VectorDrawable::ClipPath*>(srcClipPathPtr); in createClipPath()
64 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(*srcClipPath); in createClipPath()
/frameworks/base/libs/hwui/canvas/
DCanvasOpTypes.h35 ClipPath, enumerator
DCanvasFrontend.h225 if constexpr (T == CanvasOpType::ClipPath) { in draw()
DCanvasOps.h113 struct CanvasOp<CanvasOpType::ClipPath> {
/frameworks/base/libs/hwui/
DVectorDrawable.h373 class ClipPath : public Path {
375 ClipPath(const ClipPath& path) : Path(path) {} in ClipPath() function
376 ClipPath(const char* path, size_t strLength) : Path(path, strLength) {} in ClipPath() function
377 ClipPath() : Path() {} in ClipPath() function
DDisplayListOps.in25 X(ClipPath)
DRecordingCanvas.cpp179 struct ClipPath final : Op { struct
180 static const auto kType = Type::ClipPath; argument
181 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() function
821 this->push<ClipPath>(0, path, op, aa); in clipPath()
DVectorDrawable.cpp267 void ClipPath::draw(SkCanvas* outCanvas, bool useStagingData) { in draw()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/
DOperations.java20 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
141 map.put(CLIP_PATH, ClipPath.COMPANION); in map.put()
DRemoteComposeBuffer.java20 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
852 ClipPath.COMPANION.apply(mBuffer, pathId); in addClipPath()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/player/platform/
DAndroidPaintContext.java36 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
599 if (regionOp == ClipPath.DIFFERENCE) { in clipPath()