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

Method Submit

tests/framework/binding.cpp:479–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479VkResult Queue::Submit(const CommandBuffer& cmd, const Fence& fence) {
480 VkSubmitInfo submit = vku::InitStructHelper();
481 submit.commandBufferCount = cmd.initialized() ? 1 : 0;
482 submit.pCommandBuffers = &cmd.handle();
483 VkResult result = vk::QueueSubmit(handle(), 1, &submit, fence);
484 return result;
485}
486
487VkResult Queue::Submit(const std::vector<VkCommandBuffer>& cmds, const Fence& fence) {
488 VkSubmitInfo submit_info = vku::InitStructHelper();

Callers 15

TEST_FFunction · 0.45
BuildOnDeviceTopLevelFunction · 0.45
GetCubesTLASFunction · 0.45
operator()Method · 0.45
ValidOwnershipTransferOpFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45
TEST_FFunction · 0.45

Calls 5

QueueSubmitFunction · 0.85
initializedMethod · 0.80
handleMethod · 0.45
sizeMethod · 0.45
dataMethod · 0.45

Tested by 1