Lines Matching refs:pCommandBuffers
5058 VkCommandBuffer* pCommandBuffers) { in on_vkAllocateCommandBuffers() argument
5062 VkResult result = vk->vkAllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers); in on_vkAllocateCommandBuffers()
5074 mCmdBufferInfo[pCommandBuffers[i]] = CommandBufferInfo(); in on_vkAllocateCommandBuffers()
5075 mCmdBufferInfo[pCommandBuffers[i]].device = device; in on_vkAllocateCommandBuffers()
5076 mCmdBufferInfo[pCommandBuffers[i]].debugUtilsHelper = deviceInfo->debugUtilsHelper; in on_vkAllocateCommandBuffers()
5077 mCmdBufferInfo[pCommandBuffers[i]].cmdPool = pAllocateInfo->commandPool; in on_vkAllocateCommandBuffers()
5078 auto boxed = new_boxed_VkCommandBuffer(pCommandBuffers[i], vk, in on_vkAllocateCommandBuffers()
5080 mCmdBufferInfo[pCommandBuffers[i]].boxed = boxed; in on_vkAllocateCommandBuffers()
5081 pCommandBuffers[i] = (VkCommandBuffer)boxed; in on_vkAllocateCommandBuffers()
5137 const VkCommandBuffer* pCommandBuffers) { in on_vkCmdExecuteCommands() argument
5141 vk->vkCmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuffers); in on_vkCmdExecuteCommands()
5144 cmdBuffer.subCmds.insert(cmdBuffer.subCmds.end(), pCommandBuffers, in on_vkCmdExecuteCommands()
5145 pCommandBuffers + commandBufferCount); in on_vkCmdExecuteCommands()
5163 return submitInfo.pCommandBuffers[idx]; in getCommandBuffer()
5335 const VkCommandBuffer* pCommandBuffers) { in on_vkFreeCommandBuffers() argument
5340 vk->vkFreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers); in on_vkFreeCommandBuffers()
5343 const auto& cmdBufferInfoIt = mCmdBufferInfo.find(pCommandBuffers[i]); in on_vkFreeCommandBuffers()
5347 cmdPoolInfoIt->second.cmdBuffers.erase(pCommandBuffers[i]); in on_vkFreeCommandBuffers()
7153 executePreprocessRecursive(0, submit.pCommandBuffers[c]); in executePreprocessRecursive()
8407 const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) { in on_vkAllocateCommandBuffers() argument
8408 return mImpl->on_vkAllocateCommandBuffers(pool, device, pAllocateInfo, pCommandBuffers); in on_vkAllocateCommandBuffers()
8434 const VkCommandBuffer* pCommandBuffers) { in on_vkCmdExecuteCommands() argument
8435 return mImpl->on_vkCmdExecuteCommands(pool, commandBuffer, commandBufferCount, pCommandBuffers); in on_vkCmdExecuteCommands()
8463 const VkCommandBuffer* pCommandBuffers) { in on_vkFreeCommandBuffers() argument
8465 pCommandBuffers); in on_vkFreeCommandBuffers()