Home
last modified time | relevance | path

Searched refs:numPrimitivesPerBatch (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Device/
DRenderer.cpp226 unsigned int numPrimitivesPerBatch = MaxBatchSize / ms; in draw() local
237 numPrimitivesPerBatch /= 3; in draw()
241 numPrimitivesPerBatch /= 3; in draw()
261 draw->numPrimitivesPerBatch = numPrimitivesPerBatch; in draw()
262 draw->numBatches = (count + draw->numPrimitivesPerBatch - 1) / draw->numPrimitivesPerBatch; in draw()
487 auto const numPrimitivesPerBatch = draw->numPrimitivesPerBatch; in run() local
501 batch->firstPrimitive = batch->id * numPrimitivesPerBatch; in run()
502 …batch->numPrimitives = std::min(batch->firstPrimitive + numPrimitivesPerBatch, numPrimitives) - ba… in run()
DRenderer.hpp152 unsigned int numPrimitivesPerBatch; member