/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkCommandPool.cpp | 43 …*device, VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBuffer *pCommandBuffers) in allocateCommandBuffers() argument 54 pCommandBuffers[i] = *commandBuffer; in allocateCommandBuffers() 60 vk::destroy(pCommandBuffers[j], NULL_ALLOCATION_CALLBACKS); in allocateCommandBuffers() 65 pCommandBuffers[j] = VK_NULL_HANDLE; in allocateCommandBuffers() 72 commandBuffers.insert(pCommandBuffers, pCommandBuffers + commandBufferCount); in allocateCommandBuffers() 77 …ommandPool::freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBuffers) in freeCommandBuffers() argument 81 commandBuffers.erase(pCommandBuffers[i]); in freeCommandBuffers() 82 vk::destroy(pCommandBuffers[i], NULL_ALLOCATION_CALLBACKS); in freeCommandBuffers()
|
D | VkCommandPool.hpp | 34 …device, VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBuffer *pCommandBuffers); 35 void freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBuffers);
|
D | VkQueue.cpp | 86 submits[i].pCommandBuffers = nullptr; in DeepCopySubmitInfo() 112 submits[i].pCommandBuffers = reinterpret_cast<const VkCommandBuffer *>(mem); in DeepCopySubmitInfo() 113 memcpy(mem, pSubmits[i].pCommandBuffers, size); in DeepCopySubmitInfo() 236 Cast(submitInfo.pCommandBuffers[j])->submit(executionState); in submitQueue()
|
D | VkQueue.hpp | 70 const VkCommandBuffer *pCommandBuffers; member
|
D | VkCommandBuffer.hpp | 67 void executeCommands(uint32_t commandBufferCount, const VkCommandBuffer *pCommandBuffers);
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_cmd_buffer.c | 80 VkCommandBuffer* pCommandBuffers) in lvp_AllocateCommandBuffers() argument 104 pCommandBuffers[i] = lvp_cmd_buffer_to_handle(cmd_buffer); in lvp_AllocateCommandBuffers() 107 &pCommandBuffers[i]); in lvp_AllocateCommandBuffers() 115 i, pCommandBuffers); in lvp_AllocateCommandBuffers() 116 memset(pCommandBuffers, 0, in lvp_AllocateCommandBuffers() 117 sizeof(*pCommandBuffers) * pAllocateInfo->commandBufferCount); in lvp_AllocateCommandBuffers() 136 const VkCommandBuffer* pCommandBuffers) in lvp_FreeCommandBuffers() argument 139 LVP_FROM_HANDLE(lvp_cmd_buffer, cmd_buffer, pCommandBuffers[i]); in lvp_FreeCommandBuffers()
|
/third_party/mesa3d/src/virtio/vulkan/ |
D | vn_command_buffer.c | 529 VkCommandBuffer *pCommandBuffers) in vn_AllocateCommandBuffers() argument 542 cmd = vn_command_buffer_from_handle(pCommandBuffers[j]); in vn_AllocateCommandBuffers() 548 memset(pCommandBuffers, 0, in vn_AllocateCommandBuffers() 549 sizeof(*pCommandBuffers) * pAllocateInfo->commandBufferCount); in vn_AllocateCommandBuffers() 566 pCommandBuffers[i] = cmd_handle; in vn_AllocateCommandBuffers() 570 pCommandBuffers); in vn_AllocateCommandBuffers() 579 const VkCommandBuffer *pCommandBuffers) in vn_FreeCommandBuffers() argument 586 commandBufferCount, pCommandBuffers); in vn_FreeCommandBuffers() 590 vn_command_buffer_from_handle(pCommandBuffers[i]); in vn_FreeCommandBuffers() 1735 const VkCommandBuffer *pCommandBuffers) in vn_CmdExecuteCommands() argument [all …]
|
/third_party/mesa3d/src/virtio/venus-protocol/ |
D | vn_protocol_driver_command_buffer.h | 1247 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in vn_sizeof_vkAllocateCommandBuffers() argument 1257 if (pCommandBuffers) { in vn_sizeof_vkAllocateCommandBuffers() 1260 cmd_size += vn_sizeof_VkCommandBuffer(&pCommandBuffers[i]); in vn_sizeof_vkAllocateCommandBuffers() 1268 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in vn_encode_vkAllocateCommandBuffers() argument 1278 if (pCommandBuffers) { in vn_encode_vkAllocateCommandBuffers() 1281 vn_encode_VkCommandBuffer(enc, &pCommandBuffers[i]); in vn_encode_vkAllocateCommandBuffers() 1287 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in vn_sizeof_vkAllocateCommandBuffers_reply() argument 1296 if (pCommandBuffers) { in vn_sizeof_vkAllocateCommandBuffers_reply() 1299 cmd_size += vn_sizeof_VkCommandBuffer(&pCommandBuffers[i]); in vn_sizeof_vkAllocateCommandBuffers_reply() 1307 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in vn_decode_vkAllocateCommandBuffers_reply() argument [all …]
|
D | vn_protocol_driver_queue.h | 298 if (val->pCommandBuffers) { in vn_sizeof_VkSubmitInfo_self() 301 size += vn_sizeof_VkCommandBuffer(&val->pCommandBuffers[i]); in vn_sizeof_VkSubmitInfo_self() 383 if (val->pCommandBuffers) { in vn_encode_VkSubmitInfo_self() 386 vn_encode_VkCommandBuffer(enc, &val->pCommandBuffers[i]); in vn_encode_VkSubmitInfo_self()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_vX_cmd_buffer.c | 1054 VkCommandBuffer *pCommandBuffers) in panvk_per_arch() 1082 pCommandBuffers[i] = panvk_cmd_buffer_to_handle(cmdbuf); in panvk_per_arch() 1089 pCommandBuffers); in panvk_per_arch() 1091 pCommandBuffers[j] = VK_NULL_HANDLE; in panvk_per_arch() 1100 const VkCommandBuffer *pCommandBuffers) in panvk_per_arch() 1103 VK_FROM_HANDLE(panvk_cmd_buffer, cmdbuf, pCommandBuffers[i]); in panvk_per_arch()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | VulkanCommandBufferPerf.cpp | 295 submitInfo[0].pCommandBuffers = info.cmds.data(); in PrimaryCommandBufferBenchmarkHundredIndividual() 362 submitInfo[0].pCommandBuffers = cmd_bufs; in PrimaryCommandBufferBenchmarkOneWithOneHundred() 454 submitInfo[0].pCommandBuffers = cmd_bufs; in SecondaryCommandBufferBenchmark()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | VulkanCommandBufferPerf.cpp | 295 submitInfo[0].pCommandBuffers = info.cmds.data(); in PrimaryCommandBufferBenchmarkHundredIndividual() 362 submitInfo[0].pCommandBuffers = cmd_bufs; in PrimaryCommandBufferBenchmarkOneWithOneHundred() 454 submitInfo[0].pCommandBuffers = cmd_bufs; in SecondaryCommandBufferBenchmark()
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
D | overlay.cpp | 1385 submit_info.pCommandBuffers = &draw->command_buffer; in render_swapchain_display() 1403 submit_info.pCommandBuffers = &draw->command_buffer; in render_swapchain_display() 2306 const VkCommandBuffer* pCommandBuffers) in overlay_CmdExecuteCommands() argument 2315 FIND(struct command_buffer_data, pCommandBuffers[c]); in overlay_CmdExecuteCommands() 2321 device_data->vtable.CmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuffers); in overlay_CmdExecuteCommands() 2327 VkCommandBuffer* pCommandBuffers) in overlay_AllocateCommandBuffers() argument 2331 device_data->vtable.AllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers); in overlay_AllocateCommandBuffers() 2364 new_command_buffer_data(pCommandBuffers[i], pAllocateInfo->level, in overlay_AllocateCommandBuffers() 2381 const VkCommandBuffer* pCommandBuffers) in overlay_FreeCommandBuffers() argument 2386 FIND(struct command_buffer_data, pCommandBuffers[i]); in overlay_FreeCommandBuffers() [all …]
|
/third_party/mesa3d/src/intel/vulkan/ |
D | anv_cmd_buffer.c | 318 VkCommandBuffer* pCommandBuffers) in anv_AllocateCommandBuffers() argument 328 &pCommandBuffers[i]); in anv_AllocateCommandBuffers() 335 i, pCommandBuffers); in anv_AllocateCommandBuffers() 337 pCommandBuffers[i] = VK_NULL_HANDLE; in anv_AllocateCommandBuffers() 369 const VkCommandBuffer* pCommandBuffers) in anv_FreeCommandBuffers() argument 372 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, pCommandBuffers[i]); in anv_FreeCommandBuffers()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/ |
D | ClearImageBenchmarks.cpp | 114 submitInfo.pCommandBuffers = &commandBuffer; in clear()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/example_sdl_vulkan/ |
D | main.cpp | 274 info.pCommandBuffers = &fd->CommandBuffer; in FrameRender() 393 end_info.pCommandBuffers = &command_buffer; in main()
|
/third_party/flutter/skia/third_party/externals/imgui/examples/example_glfw_vulkan/ |
D | main.cpp | 284 info.pCommandBuffers = &fd->CommandBuffer; in FrameRender() 412 end_info.pCommandBuffers = &command_buffer; in main()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkNullDriver.cpp | 1376 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in allocateCommandBuffers() argument 1380 if (pAllocateInfo && pCommandBuffers) in allocateCommandBuffers() 1385 pCommandBuffers[ndx] = poolImpl->allocate(pAllocateInfo->level); in allocateCommandBuffers() 1391 …ce, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) in freeCommandBuffers() argument 1398 poolImpl->free(pCommandBuffers[ndx]); in freeCommandBuffers()
|
/third_party/skia/third_party/externals/imgui/examples/example_glfw_vulkan/ |
D | main.cpp | 317 info.pCommandBuffers = &fd->CommandBuffer; in FrameRender() 447 end_info.pCommandBuffers = &command_buffer; in main()
|
/third_party/skia/third_party/externals/imgui/examples/example_sdl_vulkan/ |
D | main.cpp | 309 info.pCommandBuffers = &fd->CommandBuffer; in FrameRender() 439 end_info.pCommandBuffers = &command_buffer; in main()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
D | Util.cpp | 63 submitInfo.pCommandBuffers = &commandBuffer; in endSingleTimeCommands()
|
/third_party/vk-gl-cts/doc/testspecs/VK/ |
D | apitests.adoc | 653 …pCommandBuffers such that its element is already pending execution in commandBuffer and was create… 654 |3 | | Call vkCmdExecuteCommands with pCommandBuffers such that its element appears twice in pComm… 655 …pCommandBuffers recorded with the VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT | If vkCmdExecu…
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_kgsl.c | 355 TU_FROM_HANDLE(tu_cmd_buffer, cmdbuf, submit->pCommandBuffers[j]); in tu_QueueSubmit() 380 TU_FROM_HANDLE(tu_cmd_buffer, cmdbuf, submit->pCommandBuffers[j]); in tu_QueueSubmit()
|
/third_party/mesa3d/src/broadcom/vulkan/ |
D | v3dv_cmd_buffer.c | 904 VkCommandBuffer *pCommandBuffers) in v3dv_AllocateCommandBuffers() argument 914 &pCommandBuffers[i]); in v3dv_AllocateCommandBuffers() 921 i, pCommandBuffers); in v3dv_AllocateCommandBuffers() 923 pCommandBuffers[i] = VK_NULL_HANDLE; in v3dv_AllocateCommandBuffers() 933 const VkCommandBuffer *pCommandBuffers) in v3dv_FreeCommandBuffers() argument 936 V3DV_FROM_HANDLE(v3dv_cmd_buffer, cmd_buffer, pCommandBuffers[i]); in v3dv_FreeCommandBuffers() 1789 const VkCommandBuffer *pCommandBuffers) in v3dv_CmdExecuteCommands() argument 1795 (primary, commandBufferCount, pCommandBuffers); in v3dv_CmdExecuteCommands() 1798 commandBufferCount, pCommandBuffers); in v3dv_CmdExecuteCommands()
|
/third_party/flutter/engine/flutter/vulkan/ |
D | vulkan_device.cc | 348 .pCommandBuffers = command_buffers.data(), in QueueSubmit()
|