Home | History | Annotate | Download | only in hwui

Lines Matching refs:batchId

31     BatchBase(batchid_t batchId, BakedOpState* op, bool merging)
32 : mBatchId(batchId)
67 OpBatch(batchid_t batchId, BakedOpState* op)
68 : BatchBase(batchId, op, false) {
79 MergingOpBatch(batchid_t batchId, BakedOpState* op)
80 : BatchBase(batchId, op, true)
212 void LayerBuilder::locateInsertIndex(int batchId, const Rect& clippedBounds,
220 if (batchId == overBatch->getBatchId()) {
288 BakedOpState* op, batchid_t batchId) {
290 OpBatch* targetBatch = mBatchLookup[batchId];
294 locateInsertIndex(batchId, op->computedState.clippedBounds,
302 targetBatch = allocator.create<OpBatch>(batchId, op);
303 mBatchLookup[batchId] = targetBatch;
309 BakedOpState* op, batchid_t batchId, mergeid_t mergeId) {
314 auto getResult = mMergingBatchLookup[batchId].find(mergeId);
315 if (getResult != mMergingBatchLookup[batchId].end()) {
323 locateInsertIndex(batchId, op->computedState.clippedBounds,
330 targetBatch = allocator.create<MergingOpBatch>(batchId, op);
331 mMergingBatchLookup[batchId].insert(std::make_pair(mergeId, targetBatch));