Home
last modified time | relevance | path

Searched refs:batchID (Results 1 – 4 of 4) sorted by relevance

/external/skqp/src/gpu/ccpr/
DGrCCFiller.cpp462 void GrCCFiller::drawFills(GrOpFlushState* flushState, BatchID batchID, in drawFills() argument
468 const PrimitiveTallies& batchTotalCounts = fBatches[batchID].fTotalPrimitiveCounts; in drawFills()
473 this->drawPrimitives(flushState, pipeline, batchID, PrimitiveType::kTriangles, in drawFills()
478 this->drawPrimitives(flushState, pipeline, batchID, PrimitiveType::kWeightedTriangles, in drawFills()
483 this->drawPrimitives(flushState, pipeline, batchID, PrimitiveType::kQuadratics, in drawFills()
488 this->drawPrimitives(flushState, pipeline, batchID, PrimitiveType::kCubics, in drawFills()
493 this->drawPrimitives(flushState, pipeline, batchID, PrimitiveType::kConics, in drawFills()
499 BatchID batchID, GrCCCoverageProcessor::PrimitiveType primitiveType, in drawPrimitives() argument
510 SkASSERT(batchID > 0); in drawPrimitives()
511 SkASSERT(batchID < fBatches.count()); in drawPrimitives()
[all …]
DGrCCStroker.cpp675 void GrCCStroker::drawStrokes(GrOpFlushState* flushState, BatchID batchID, in drawStrokes() argument
680 if (kEmptyBatchID == batchID) { in drawStrokes()
683 const Batch& batch = fBatches[batchID]; in drawStrokes()
684 int startScissorSubBatch = (!batchID) ? 0 : fBatches[batchID - 1].fEndScissorSubBatch; in drawStrokes()
687 startIndices[(int)GrScissorTest::kDisabled] = (!batchID) in drawStrokes()
688 ? &fZeroTallies : fBatches[batchID - 1].fNonScissorEndInstances; in drawStrokes()
/external/swiftshader/src/Pipeline/
DComputeProgram.cpp245 for(uint32_t batchID = 0; batchID < batchCount && batchID < groupCount; batchID++) in run() local
252 for(uint32_t groupIndex = batchID; groupIndex < groupCount; groupIndex += batchCount) in run()
/external/skqp/samplecode/
DSampleCCPRGeometry.cpp379 GrCCStroker::BatchID batchID = stroker.closeCurrentBatch(); in onExecute() local
386 stroker.drawStrokes(state, batchID, ibounds); in onExecute()