Home
last modified time | relevance | path

Searched refs:vkQueueSubmit (Results 1 – 18 of 18) sorted by relevance

/external/vulkan-validation-layers/layers/
Dvk_validation_layer_details.md36 …d buffer that does have that bit set. | INVALID_CB_SIMULTANEOUS_USE | vkQueueSubmit vkCmdExecuteCo…
43 … that was not properly created and/or is unknown. | INVALID_SAMPLER | vkQueueSubmit | InvalidCmdBu…
45 …as properly created and is currently valid | INVALID_COMMAND_BUFFER | vkQueueSubmit vkBeginCommand…
48 …ed for this commandBuffer at QueueSubmit time | NO_END_COMMAND_BUFFER | vkQueueSubmit | TODO | NA |
50 …imes | COMMAND_BUFFER_SINGLE_SUBMIT_VIOLATION | vkBeginCommandBuffer, vkQueueSubmit | CommandBuffe…
52 …Either never created or already destroyed. | INVALID_DESCRIPTOR_SET | vkQueueSubmit vkUpdateDescri…
89 …VALID_IMAGE_LAYOUT | vkCreateRenderPass vkMapMemory vkQueuePresentKHR vkQueueSubmit vkCmdCopyImage…
91 …nd Buffer not submitted with deleted memory buffer | INVALID_BUFFER | vkQueueSubmit | VertexBuffer…
92 …ate Command Buffer not submitted with deleted image | INVALID_IMAGE | vkQueueSubmit | TODO | Write…
93 …d Buffer not submitted with deleted query pool | INVALID_QUERY_POOL | vkQueueSubmit | TODO | Write…
[all …]
Dvk_validation_error_database.txt132vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
133vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
134vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
135vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
136vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
137vkQueueSubmit~^~For more information refer to Vulkan Spec Section '5.4. Command Buffer Submission'…
138 VALIDATION_ERROR_00132~^~U~^~Unknown~^~vkQueueSubmit~^~For more information refer to Vulkan Spec Se…
139 VALIDATION_ERROR_00133~^~U~^~Unknown~^~vkQueueSubmit~^~For more information refer to Vulkan Spec Se…
140 VALIDATION_ERROR_00134~^~U~^~Unknown~^~vkQueueSubmit~^~For more information refer to Vulkan Spec Se…
141 VALIDATION_ERROR_00135~^~U~^~Unknown~^~vkQueueSubmit~^~For more information refer to Vulkan Spec Se…
[all …]
/external/vulkan-validation-layers/common/
Dvulkan_wrapper.h51 extern PFN_vkQueueSubmit vkQueueSubmit;
Dvulkan_wrapper.cpp48 vkQueueSubmit = reinterpret_cast<PFN_vkQueueSubmit>(dlsym(libvulkan, "vkQueueSubmit")); in InitVulkan()
236 PFN_vkQueueSubmit vkQueueSubmit; variable
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp871 vkQueueSubmit(m_device->m_queue, 1, &submitInfo, VK_NULL_HANDLE); in TEST_F()
914 vkQueueSubmit(m_device->m_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
984 vkQueueSubmit(m_device->m_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
1219 err = vkQueueSubmit( m_device->m_queue, 1, &submit_info, testFence.handle());
1261 err = vkQueueSubmit( m_device->m_queue, 1, &submit_info, testFence.handle());
1884 vkQueueSubmit(m_device->m_queue, 1, &submit_info, testFence.handle()); in TEST_F()
2777 vkQueueSubmit(other_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
3496 err = vkQueueSubmit(m_device->m_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
3501 err = vkQueueSubmit(m_device->m_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
3912 vkQueueSubmit(m_device->m_queue, 1, &submit_info, VK_NULL_HANDLE); in TEST_F()
[all …]
Dvkrenderframework.cpp1022 err = vkQueueSubmit(m_device->m_queue, 1, &submit_info, m_fence.handle()); in BufferMemoryBarrier()
1517 err = vkQueueSubmit(m_device->m_queue, 1, &submit_info, fence); in QueueCommandBuffer()
Dvktestbinding.cpp397 EXPECT(vkQueueSubmit(handle(), 1, &submit_info, fence.handle()) == VK_SUCCESS); in submit()
/external/vulkan-validation-layers/loader/
Dgpa_helper.h64 return (PFN_vkVoidFunction)vkQueueSubmit; in trampolineGetProcAddr()
Dtrampoline.c970 vkQueueSubmit(VkQueue queue, uint32_t submitCount, const VkSubmitInfo *pSubmits, function
DLoaderAndLayerInterface.md1346 addition to the intercept. For example, a layer intercepting vkQueueSubmit may
1348 vkQueueSubmit. Any additional calls inserted by a layer must be on the same
/external/deqp/doc/testspecs/VK/
Dapitests.adoc397 * Using same fence in multiple vkQueueSubmit calls without waiting/resetting in between
624 … considered to be pending execution from the time it is submitted via vkQueueSubmit until that sub…
637 |1 | Submission correctness | Call vkQueueSubmit with submitCount equal to the actual count of sub…
639 |3 | Submission with semaphores | Call vkQueueSubmit that waits for a single semaphore |
643 |7 | Submission without a fence | Call vkQueueSubmit with VK_NULL_HANDLE passed as fence. | If fen…
/external/deqp/external/vulkancts/framework/vulkan/
DvkInitDeviceFunctionPointers.inl6 m_vk.queueSubmit = (QueueSubmitFunc) GET_PROC_ADDR("vkQueueSubmit");
DvkNullDriverImpl.inl1457 VK_NULL_FUNC_ENTRY(vkQueueSubmit, queueSubmit),
/external/vulkan-validation-layers/demos/
Dcube.c548 err = vkQueueSubmit(demo->graphics_queue, 1, &submit_info, fence); in demo_flush_init_cmd()
820 err = vkQueueSubmit(demo->graphics_queue, 1, &submit_info, nullFence); in demo_draw()
835 err = vkQueueSubmit(demo->present_queue, 1, &submit_info, nullFence); in demo_draw()
/external/vulkan-validation-layers/tests/layers/
Dwrap_objects.cpp220 VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit(VkQueue queue, uint32_t submitCount, const VkSubmitInf… in vkQueueSubmit() function
1182 return (PFN_vkVoidFunction) vkQueueSubmit; in layer_intercept_proc()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.h2481 VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit(
Dvulkan.hpp14873 …return static_cast<Result>( vkQueueSubmit( m_queue, submitCount, reinterpret_cast<const VkSubmitIn… in submit()
14879 …Result result = static_cast<Result>( vkQueueSubmit( m_queue, submits.size() , reinterpret_cast<con… in submit()
/external/deqp/external/vulkancts/scripts/src/
Dvulkan.h.in2515 VKAPI_ATTR VkResult VKAPI_CALL vkQueueSubmit(