/external/skia/src/gpu/ |
D | GrResourceAllocator.cpp | 24 uint32_t GrResourceAllocator::Interval::CreateUniqueID() { in CreateUniqueID() 34 void GrResourceAllocator::Interval::assign(sk_sp<GrSurface> s) { in assign() 41 void GrResourceAllocator::markEndOfOpList(int opListIndex) { in markEndOfOpList() 52 GrResourceAllocator::~GrResourceAllocator() { in ~GrResourceAllocator() 58 void GrResourceAllocator::addInterval(GrSurfaceProxy* proxy, unsigned int start, unsigned int end 120 GrResourceAllocator::Interval* GrResourceAllocator::IntervalList::popHead() { in popHead() 137 void GrResourceAllocator::IntervalList::insertByIncreasingStart(Interval* intvl) { in insertByIncreasingStart() 168 void GrResourceAllocator::IntervalList::insertByIncreasingEnd(Interval* intvl) { in insertByIncreasingEnd() 199 void GrResourceAllocator::IntervalList::validate() const { in validate() 210 GrResourceAllocator::Interval* GrResourceAllocator::IntervalList::detachAll() { in detachAll() [all …]
|
D | GrResourceAllocator.h | 43 class GrResourceAllocator { 45 GrResourceAllocator(GrResourceProvider* resourceProvider, GrDeinstantiateProxyTracker* tracker) in GrResourceAllocator() function 48 ~GrResourceAllocator();
|
D | GrTextureOpList.h | 67 void gatherProxyIntervals(GrResourceAllocator*) const override;
|
D | GrDrawingManager.cpp | 300 GrResourceAllocator alloc(resourceProvider, flushState.deinstantiateProxyTracker()); in flush() 308 GrResourceAllocator::AssignError error = GrResourceAllocator::AssignError::kNoError; in flush() 311 if (GrResourceAllocator::AssignError::kFailedProxyInstantiation == error) { in flush()
|
D | GrRenderTargetOpList.h | 219 void gatherProxyIntervals(GrResourceAllocator*) const override;
|
D | GrTextureOpList.cpp | 183 void GrTextureOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
|
D | GrRenderTargetOpList.cpp | 613 void GrRenderTargetOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
|
/external/skqp/src/gpu/ |
D | GrResourceAllocator.cpp | 24 uint32_t GrResourceAllocator::Interval::CreateUniqueID() { in CreateUniqueID() 34 void GrResourceAllocator::Interval::assign(sk_sp<GrSurface> s) { in assign() 41 void GrResourceAllocator::markEndOfOpList(int opListIndex) { in markEndOfOpList() 52 GrResourceAllocator::~GrResourceAllocator() { in ~GrResourceAllocator() 58 void GrResourceAllocator::addInterval(GrSurfaceProxy* proxy, unsigned int start, unsigned int end 120 GrResourceAllocator::Interval* GrResourceAllocator::IntervalList::popHead() { in popHead() 137 void GrResourceAllocator::IntervalList::insertByIncreasingStart(Interval* intvl) { in insertByIncreasingStart() 168 void GrResourceAllocator::IntervalList::insertByIncreasingEnd(Interval* intvl) { in insertByIncreasingEnd() 199 void GrResourceAllocator::IntervalList::validate() const { in validate() 210 GrResourceAllocator::Interval* GrResourceAllocator::IntervalList::detachAll() { in detachAll() [all …]
|
D | GrResourceAllocator.h | 43 class GrResourceAllocator { 45 GrResourceAllocator(GrResourceProvider* resourceProvider, GrDeinstantiateProxyTracker* tracker) in GrResourceAllocator() function 48 ~GrResourceAllocator();
|
D | GrDrawingManager.cpp | 286 GrResourceAllocator alloc(fContext->contextPriv().resourceProvider(), in flush() 295 GrResourceAllocator::AssignError error = GrResourceAllocator::AssignError::kNoError; in flush() 298 if (GrResourceAllocator::AssignError::kFailedProxyInstantiation == error) { in flush()
|
D | GrTextureOpList.h | 67 void gatherProxyIntervals(GrResourceAllocator*) const override;
|
D | GrRenderTargetOpList.h | 214 void gatherProxyIntervals(GrResourceAllocator*) const override;
|
D | GrTextureOpList.cpp | 181 void GrTextureOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
|
D | GrRenderTargetOpList.cpp | 609 void GrRenderTargetOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
|
/external/skia/tests/ |
D | ResourceAllocatorTest.cpp | 94 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in overlap_test() 101 GrResourceAllocator::AssignError error; in overlap_test() 103 REPORTER_ASSERT(reporter, GrResourceAllocator::AssignError::kNoError == error); in overlap_test() 117 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in non_overlap_test() 124 GrResourceAllocator::AssignError error; in non_overlap_test() 126 REPORTER_ASSERT(reporter, GrResourceAllocator::AssignError::kNoError == error); in non_overlap_test() 345 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 352 GrResourceAllocator::AssignError error; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/external/skqp/tests/ |
D | ResourceAllocatorTest.cpp | 94 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in overlap_test() 101 GrResourceAllocator::AssignError error; in overlap_test() 103 REPORTER_ASSERT(reporter, GrResourceAllocator::AssignError::kNoError == error); in overlap_test() 117 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in non_overlap_test() 124 GrResourceAllocator::AssignError error; in non_overlap_test() 126 REPORTER_ASSERT(reporter, GrResourceAllocator::AssignError::kNoError == error); in non_overlap_test() 345 GrResourceAllocator alloc(resourceProvider, &deinstantiateTracker); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 352 GrResourceAllocator::AssignError error; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/external/skqp/include/private/ |
D | GrOpList.h | 22 class GrResourceAllocator; variable 125 virtual void gatherProxyIntervals(GrResourceAllocator*) const = 0;
|
/external/skia/include/private/ |
D | GrOpList.h | 23 class GrResourceAllocator; variable 126 virtual void gatherProxyIntervals(GrResourceAllocator*) const = 0;
|
/external/skqp/gn/ |
D | gpu.gni | 172 "$_src/gpu/GrResourceAllocator.cpp", 173 "$_src/gpu/GrResourceAllocator.h",
|
/external/skia/gn/ |
D | gpu.gni | 177 "$_src/gpu/GrResourceAllocator.cpp", 178 "$_src/gpu/GrResourceAllocator.h",
|
/external/skqp/ |
D | Android.bp | 846 "src/gpu/GrResourceAllocator.cpp",
|
/external/skia/ |
D | Android.bp | 614 "src/gpu/GrResourceAllocator.cpp",
|