Lines Matching refs:batch
309 inline static void append_to_batch(AAFillRectBatchNoLocalMatrix* batch, GrColor color, in append_to_batch() argument
312 AAFillRectBatchNoLocalMatrix::Geometry& geo = batch->geoData()->push_back(); in append_to_batch()
319 inline static void append_to_batch(AAFillRectBatchLocalMatrix* batch, GrColor color, in append_to_batch() argument
322 AAFillRectBatchLocalMatrix::Geometry& geo = batch->geoData()->push_back(); in append_to_batch()
336 AAFillRectBatchNoLocalMatrix* batch = AAFillRectBatchNoLocalMatrix::Create(); in Create() local
337 append_to_batch(batch, color, viewMatrix, rect, devRect); in Create()
338 batch->init(); in Create()
339 return batch; in Create()
347 AAFillRectBatchLocalMatrix* batch = AAFillRectBatchLocalMatrix::Create(); in Create() local
348 append_to_batch(batch, color, viewMatrix, localMatrix, rect, devRect); in Create()
349 batch->init(); in Create()
350 return batch; in Create()
380 AAFillRectBatchNoLocalMatrix* batch = origBatch->cast<AAFillRectBatchNoLocalMatrix>(); in Append() local
381 append_to_batch(batch, color, viewMatrix, rect, devRect); in Append()
382 batch->updateBoundsAfterAppend(); in Append()
391 AAFillRectBatchLocalMatrix* batch = origBatch->cast<AAFillRectBatchLocalMatrix>(); in Append() local
392 append_to_batch(batch, color, viewMatrix, localMatrix, rect, devRect); in Append()
393 batch->updateBoundsAfterAppend(); in Append()