Home
last modified time | relevance | path

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

/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.h181 if constexpr (T == CanvasOpType::ClipPath) { in draw()
DCanvasOps.h107 struct CanvasOp<CanvasOpType::ClipPath> {
/frameworks/base/libs/hwui/
DVectorDrawable.h372 class ClipPath : public Path {
374 ClipPath(const ClipPath& path) : Path(path) {} in ClipPath() function
375 ClipPath(const char* path, size_t strLength) : Path(path, strLength) {} in ClipPath() function
376 ClipPath() : Path() {} in ClipPath() function
DDisplayListOps.in26 X(ClipPath)
DRecordingCanvas.cpp158 struct ClipPath final : Op { struct
159 static const auto kType = Type::ClipPath; argument
160 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() argument
653 this->push<ClipPath>(0, path, op, aa); in clipPath()
DVectorDrawable.cpp270 void ClipPath::draw(SkCanvas* outCanvas, bool useStagingData) { in draw()