| 1330 | } |
| 1331 | |
| 1332 | vvl::span<AccessContext> ReplayState::RenderPassReplayState::GetSubpassContexts() { |
| 1333 | return vvl::make_span(subpass_contexts.get(), |
| 1334 | begin_op->GetRenderPassAccessContext()->GetRenderPassState()->create_info.subpassCount); |
| 1335 | } |
| 1336 | |
| 1337 | void SyncEventsContext::ApplyBarrier(const SyncExecScope& src, const SyncExecScope& dst, ResourceUsageTag tag) { |
| 1338 | const bool all_commands_bit = 0 != (src.stage_mask & VK_PIPELINE_STAGE_ALL_COMMANDS_BIT); |
no test coverage detected