Home
last modified time | relevance | path

Searched refs:hasVectorDrawables (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
DDisplayList.h91 [[nodiscard]] bool hasVectorDrawables() const { in hasVectorDrawables() function
92 return mImpl && mImpl->hasVectorDrawables(); in hasVectorDrawables()
170 bool hasVectorDrawables() const { return false; } in hasVectorDrawables() function
266 [[nodiscard]] bool hasVectorDrawables() const { in hasVectorDrawables() function
267 return apply([](const auto& it) -> auto { return it.hasVectorDrawables(); }); in hasVectorDrawables()
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaDisplayList.h94 bool hasVectorDrawables() const { return !mVectorDrawables.empty(); } in hasVectorDrawables() function
/frameworks/base/libs/hwui/canvas/
DCanvasOpBuffer.h108 [[nodiscard]] bool hasVectorDrawables() const { return mHas.vectorDrawable; } in hasVectorDrawables() function
/frameworks/base/libs/hwui/tests/unit/
DSkiaDisplayListTests.cpp63 ASSERT_TRUE(skiaDL->hasVectorDrawables()); in TEST()
72 ASSERT_FALSE(skiaDL->hasVectorDrawables()); in TEST()
DRenderNodeTests.cpp329 EXPECT_TRUE(rootNode->getDisplayList().hasVectorDrawables()); in RENDERTHREAD_TEST()