Searched refs:stopIndex (Results 1 – 5 of 5) sorted by relevance
/third_party/flutter/skia/src/gpu/ |
D | GrDrawingManager.cpp | 66 void GrDrawingManager::RenderTaskDAG::removeRenderTasks(int startIndex, int stopIndex) { in removeRenderTasks() argument 67 for (int i = startIndex; i < stopIndex; ++i) { in removeRenderTasks() 315 int startIndex, stopIndex; in flush() local 331 while (alloc.assign(&startIndex, &stopIndex, &error)) { in flush() 333 for (int i = startIndex; i < stopIndex; ++i) { in flush() 348 startIndex, stopIndex, &flushState, &numRenderTasksExecuted)) { in flush() 398 bool GrDrawingManager::executeRenderTasks(int startIndex, int stopIndex, GrOpFlushState* flushState, in executeRenderTasks() argument 400 SkASSERT(startIndex <= stopIndex && stopIndex <= fDAG.numRenderTasks()); in executeRenderTasks() 404 startIndex, stopIndex, 0, fDAG.numRenderTasks()); in executeRenderTasks() 405 for (int i = startIndex; i < stopIndex; ++i) { in executeRenderTasks() [all …]
|
D | GrResourceAllocator.cpp | 367 void GrResourceAllocator::forceIntermediateFlush(int* stopIndex) { in forceIntermediateFlush() argument 368 *stopIndex = fCurOpListIndex+1; in forceIntermediateFlush() 383 bool GrResourceAllocator::assign(int* startIndex, int* stopIndex, AssignError* outError) { in assign() argument 397 *stopIndex = fEndOfOpListOpIndices.count(); in assign() 406 *startIndex, *stopIndex, fNumOpLists); in assign() 442 this->forceIntermediateFlush(stopIndex); in assign() 489 this->forceIntermediateFlush(stopIndex); in assign()
|
D | GrResourceAllocator.h | 110 bool assign(int* startIndex, int* stopIndex, AssignError* outError); 126 void forceIntermediateFlush(int* stopIndex);
|
D | GrDrawingManager.h | 127 void removeRenderTasks(int startIndex, int stopIndex); 168 bool executeRenderTasks(int startIndex, int stopIndex, GrOpFlushState*,
|
/third_party/flutter/skia/tests/ |
D | ResourceAllocatorTest.cpp | 90 int startIndex, stopIndex; in overlap_test() local 92 alloc.assign(&startIndex, &stopIndex, &error); in overlap_test() 122 int startIndex, stopIndex; in non_overlap_test() local 124 alloc.assign(&startIndex, &stopIndex, &error); in non_overlap_test() 336 int startIndex, stopIndex; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 338 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 388 int startIndex, stopIndex; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 393 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 395 REPORTER_ASSERT(reporter, 0 == startIndex && 1 == stopIndex); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 397 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() [all …]
|