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.java36 public class ClipPath extends PaintOperation implements Serializable { class
42 public ClipPath(int pathId, int regionOp) { in ClipPath() method in ClipPath
84 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() argument
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.java23 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
346 map.put(CLIP_PATH, ClipPath::read); in map.put()
DRemoteComposeBuffer.java26 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
1306 ClipPath.apply(mBuffer, pathId); in addClipPath()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/player/platform/
DAndroidPaintContext.java48 import com.android.internal.widget.remotecompose.core.operations.ClipPath;
898 if (regionOp == ClipPath.DIFFERENCE) { in clipPath()