Home
last modified time | relevance | path

Searched defs:ClipPath (Results 1 – 4 of 4) 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
/frameworks/base/libs/hwui/canvas/
DCanvasOpTypes.h35 ClipPath, enumerator
/frameworks/base/libs/hwui/
DVectorDrawable.h375 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
DRecordingCanvas.cpp179 struct ClipPath final : Op { struct
180 static const auto kType = Type::ClipPath;
181 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() function
182 SkPath path;
183 SkClipOp op;
184 bool aa;
185 void draw(SkCanvas* c, const SkMatrix&) const { c->clipPath(path, op, aa); } in draw()