| 804 | } |
| 805 | |
| 806 | void BatchAccessLog::Import(const BatchRecord& batch, const CommandBufferAccessContext& cb_access, |
| 807 | const std::vector<std::string>& initial_label_stack) { |
| 808 | ResourceUsageRange import_range = {batch.base_tag, batch.base_tag + cb_access.GetTagCount()}; |
| 809 | log_map_.insert(std::make_pair(import_range, CBSubmitLog(batch, cb_access, initial_label_stack))); |
| 810 | } |
| 811 | |
| 812 | void BatchAccessLog::Import(const BatchAccessLog& other) { |
| 813 | for (const auto& entry : other.log_map_) { |
no test coverage detected