Lines Matching refs:BakedOpState
31 BatchBase(batchid_t batchId, BakedOpState* op, bool merging) in BatchBase()
41 for (const BakedOpState* op : mOps) { in intersects()
52 const std::vector<BakedOpState*>& getOps() const { return mOps; } in getOps()
61 std::vector<BakedOpState*> mOps;
67 OpBatch(batchid_t batchId, BakedOpState* op) in OpBatch()
71 void batchOp(BakedOpState* op) { in batchOp()
79 MergingOpBatch(batchid_t batchId, BakedOpState* op) in MergingOpBatch()
125 bool canMergeWith(BakedOpState* op) const { in canMergeWith()
135 const BakedOpState* lhs = op; in canMergeWith()
136 const BakedOpState* rhs = mOps[0]; in canMergeWith()
183 void mergeOp(BakedOpState* op) { in mergeOp()
239 void LayerBuilder::onDeferOp(LinearAllocator& allocator, const BakedOpState* bakedState) { in onDeferOp()
281 BakedOpState* bakedState = BakedOpState::directConstruct(allocator, in flushLayerClears()
288 BakedOpState* op, batchid_t batchId) { in deferUnmergeableOp()
309 BakedOpState* op, batchid_t batchId, mergeid_t mergeId) { in deferMergeableOp()
359 for (const BakedOpState* op : batch->getOps()) { in replayBakedOpsImpl()