Searched refs:ClipPath (Results 1 – 8 of 8) sorted by relevance
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_drawable_VectorDrawable.cpp | 57 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()
|
/aosp14/frameworks/base/libs/hwui/canvas/ |
H A D | CanvasOpTypes.h | 35 ClipPath, enumerator
|
H A D | CanvasFrontend.h | 225 if constexpr (T == CanvasOpType::ClipPath) { in draw()
|
H A D | CanvasOps.h | 113 struct CanvasOp<CanvasOpType::ClipPath> {
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | VectorDrawable.h | 373 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
|
H A D | DisplayListOps.in | 26 X(ClipPath)
|
H A D | RecordingCanvas.cpp | 182 struct ClipPath final : Op { struct 183 static const auto kType = Type::ClipPath; argument 184 ClipPath(const SkPath& path, SkClipOp op, bool aa) : path(path), op(op), aa(aa) {} in ClipPath() function 788 this->push<ClipPath>(0, path, op, aa); in clipPath()
|
H A D | VectorDrawable.cpp | 271 void ClipPath::draw(SkCanvas* outCanvas, bool useStagingData) { in draw()
|