| 1383 | } |
| 1384 | |
| 1385 | bool SyncEventState::HasBarrier(VkPipelineStageFlags2 stageMask, VkPipelineStageFlags2 exec_scope_arg) const { |
| 1386 | return (last_command == vvl::Func::Empty) || (stageMask & VK_PIPELINE_STAGE_ALL_COMMANDS_BIT) || (barriers & exec_scope_arg) || |
| 1387 | (barriers & VK_PIPELINE_STAGE_ALL_COMMANDS_BIT); |
| 1388 | } |
| 1389 | |
| 1390 | void SyncEventState::AddReferencedTags(ResourceUsageTagSet& referenced) const { |
| 1391 | if (first_scope) { |
no outgoing calls
no test coverage detected