Home
last modified time | relevance | path

Searched defs:ClipPath (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/libs/hwui/canvas/
H A DCanvasOpTypes.h35 ClipPath, enumerator
/aosp14/frameworks/base/libs/hwui/
H A 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
H A DRecordingCanvas.cpp182 struct ClipPath final : Op { struct
183 static const auto kType = Type::ClipPath;
184 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() argument
185 SkPath path;
186 SkClipOp op;
187 bool aa;
188 void draw(SkCanvas* c, const SkMatrix&) const { c->clipPath(path, op, aa); } in draw()