Home
last modified time | relevance | path

Searched refs:GrResourceAllocator (Results 1 – 22 of 22) sorted by relevance

/external/skia/src/gpu/
DGrResourceAllocator.cpp24 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 …]
DGrResourceAllocator.h43 class GrResourceAllocator {
45 GrResourceAllocator(GrResourceProvider* resourceProvider, GrDeinstantiateProxyTracker* tracker) in GrResourceAllocator() function
48 ~GrResourceAllocator();
DGrTextureOpList.h67 void gatherProxyIntervals(GrResourceAllocator*) const override;
DGrDrawingManager.cpp300 GrResourceAllocator alloc(resourceProvider, flushState.deinstantiateProxyTracker()); in flush()
308 GrResourceAllocator::AssignError error = GrResourceAllocator::AssignError::kNoError; in flush()
311 if (GrResourceAllocator::AssignError::kFailedProxyInstantiation == error) { in flush()
DGrRenderTargetOpList.h219 void gatherProxyIntervals(GrResourceAllocator*) const override;
DGrTextureOpList.cpp183 void GrTextureOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
DGrRenderTargetOpList.cpp613 void GrRenderTargetOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
/external/skqp/src/gpu/
DGrResourceAllocator.cpp24 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 …]
DGrResourceAllocator.h43 class GrResourceAllocator {
45 GrResourceAllocator(GrResourceProvider* resourceProvider, GrDeinstantiateProxyTracker* tracker) in GrResourceAllocator() function
48 ~GrResourceAllocator();
DGrDrawingManager.cpp286 GrResourceAllocator alloc(fContext->contextPriv().resourceProvider(), in flush()
295 GrResourceAllocator::AssignError error = GrResourceAllocator::AssignError::kNoError; in flush()
298 if (GrResourceAllocator::AssignError::kFailedProxyInstantiation == error) { in flush()
DGrTextureOpList.h67 void gatherProxyIntervals(GrResourceAllocator*) const override;
DGrRenderTargetOpList.h214 void gatherProxyIntervals(GrResourceAllocator*) const override;
DGrTextureOpList.cpp181 void GrTextureOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
DGrRenderTargetOpList.cpp609 void GrRenderTargetOpList::gatherProxyIntervals(GrResourceAllocator* alloc) const { in gatherProxyIntervals()
/external/skia/tests/
DResourceAllocatorTest.cpp94 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/
DResourceAllocatorTest.cpp94 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/
DGrOpList.h22 class GrResourceAllocator; variable
125 virtual void gatherProxyIntervals(GrResourceAllocator*) const = 0;
/external/skia/include/private/
DGrOpList.h23 class GrResourceAllocator; variable
126 virtual void gatherProxyIntervals(GrResourceAllocator*) const = 0;
/external/skqp/gn/
Dgpu.gni172 "$_src/gpu/GrResourceAllocator.cpp",
173 "$_src/gpu/GrResourceAllocator.h",
/external/skia/gn/
Dgpu.gni177 "$_src/gpu/GrResourceAllocator.cpp",
178 "$_src/gpu/GrResourceAllocator.h",
/external/skqp/
DAndroid.bp846 "src/gpu/GrResourceAllocator.cpp",
/external/skia/
DAndroid.bp614 "src/gpu/GrResourceAllocator.cpp",