Lines Matching refs:stopIndex
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()
414 for (int i = startIndex; i < stopIndex; ++i) { in executeRenderTasks()
453 for (int i = startIndex; i < stopIndex; ++i) { in executeRenderTasks()
477 fDAG.removeRenderTasks(startIndex, stopIndex); in executeRenderTasks()