Lines Matching defs:drawCount
272 int drawCount) {
287 this->multiDrawArraysANGLEOrWebGL(drawIndirectBuffer, offset, drawCount);
293 if (drawCount > 1 && fGpu->glCaps().multiDrawType() == MultiDrawType::kMultiDrawIndirect) {
297 drawCount, sizeof(GrDrawIndirectCommand)));
301 for (int i = 0; i < drawCount; ++i) {
310 size_t offset, int drawCount) {
324 while (drawCount) {
325 int countInBatch = std::min(drawCount, kMaxDrawCountPerBatch);
341 drawCount -= countInBatch;
347 int drawCount) {
359 this->multiDrawElementsANGLEOrWebGL(drawIndirectBuffer, offset, drawCount);
365 if (drawCount > 1 && fGpu->glCaps().multiDrawType() == MultiDrawType::kMultiDrawIndirect) {
369 drawCount, sizeof(GrDrawIndexedIndirectCommand)));
373 for (int i = 0; i < drawCount; ++i) {
382 size_t offset, int drawCount) {
397 while (drawCount) {
398 int countInBatch = std::min(drawCount, kMaxDrawCountPerBatch);
419 drawCount -= countInBatch;