MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-ValidationLayers / BarrierKHR

Method BarrierKHR

tests/framework/binding.cpp:2255–2258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2253void CommandBuffer::Barrier(const VkDependencyInfo& dep_info) { vk::CmdPipelineBarrier2(handle(), &dep_info); }
2254
2255void CommandBuffer::BarrierKHR(const VkMemoryBarrier2& barrier, VkDependencyFlags dependency_flags) {
2256 VkDependencyInfo dep_info = DependencyInfo(barrier, dependency_flags);
2257 vk::CmdPipelineBarrier2KHR(handle(), &dep_info);
2258}
2259
2260void CommandBuffer::BarrierKHR(const VkBufferMemoryBarrier2& buffer_barrier, VkDependencyFlags dependency_flags) {
2261 VkDependencyInfo dep_info = DependencyInfo(buffer_barrier, dependency_flags);

Callers 11

TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80

Calls 2

DependencyInfoFunction · 0.85
CmdPipelineBarrier2KHRFunction · 0.85

Tested by

no test coverage detected