Home
last modified time | relevance | path

Searched refs:pCommandBuffers (Results 1 – 25 of 56) sorted by relevance

123

/external/swiftshader/src/Vulkan/
DVkCommandPool.cpp46 …dBuffers(VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBuffer* pCommandBuffers) in allocateCommandBuffers() argument
53 pCommandBuffers[i] = *commandBuffer; in allocateCommandBuffers()
59 vk::destroy(pCommandBuffers[j], DEVICE_MEMORY); in allocateCommandBuffers()
63 pCommandBuffers[j] = VK_NULL_HANDLE; in allocateCommandBuffers()
69 commandBuffers->insert(pCommandBuffers, pCommandBuffers + commandBufferCount); in allocateCommandBuffers()
74 …ommandPool::freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) in freeCommandBuffers() argument
78 commandBuffers->erase(pCommandBuffers[i]); in freeCommandBuffers()
79 vk::destroy(pCommandBuffers[i], DEVICE_MEMORY); in freeCommandBuffers()
DVkCommandPool.hpp33 …Buffers(VkCommandBufferLevel level, uint32_t commandBufferCount, VkCommandBuffer* pCommandBuffers);
34 void freeCommandBuffers(uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
DVkQueue.cpp51 vk::Cast(submitInfo.pCommandBuffers[j])->submit(executionState); in submit()
DlibVulkan.cpp1218 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in vkAllocateCommandBuffers() argument
1221 device, pAllocateInfo, pCommandBuffers); in vkAllocateCommandBuffers()
1229 pAllocateInfo->level, pAllocateInfo->commandBufferCount, pCommandBuffers); in vkAllocateCommandBuffers()
1232 …ce, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) in vkFreeCommandBuffers() argument
1235 device, commandPool, commandBufferCount, pCommandBuffers); in vkFreeCommandBuffers()
1237 vk::Cast(commandPool)->freeCommandBuffers(commandBufferCount, pCommandBuffers); in vkFreeCommandBuffers()
1620 …VkCommandBuffer commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) in vkCmdExecuteCommands() argument
1623 commandBuffer, commandBufferCount, pCommandBuffers); in vkCmdExecuteCommands()
1625 vk::Cast(commandBuffer)->executeCommands(commandBufferCount, pCommandBuffers); in vkCmdExecuteCommands()
DVkCommandBuffer.hpp52 void executeCommands(uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationBasicSemaphoreTests.cpp263 submitInfo[FIRST].pCommandBuffers = &cmdBuffer[FIRST].get(); in basicMultiQueueCase()
273 submitInfo[SECOND].pCommandBuffers = &cmdBuffer[SECOND].get(); in basicMultiQueueCase()
298 submitInfo[SECOND].pCommandBuffers = &cmdBuffer[SECOND].get(); in basicMultiQueueCase()
299 submitInfo[FIRST].pCommandBuffers = &cmdBuffer[FIRST].get(); in basicMultiQueueCase()
DvktSynchronizationSmokeTests.cpp1003 submitInfo.pCommandBuffers = &testContext.cmdBuffer.get(); in testFences()
1138 submitInfo[0].pCommandBuffers = &testContext1.cmdBuffer.get(); in testSemaphores()
1139 submitInfo[1].pCommandBuffers = &testContext2.cmdBuffer.get(); in testSemaphores()
1225 submitInfo.pCommandBuffers = &testContext.cmdBuffer.get(); in testEvents()
/external/vulkan-validation-layers/layers/
Dobject_tracker_utils.cpp615 VkCommandBuffer *pCommandBuffers) { in PreCallValidateAllocateCommandBuffers() argument
625 … VkCommandBuffer *pCommandBuffers, VkResult result) { in PostCallRecordAllocateCommandBuffers() argument
628 …AllocateCommandBuffer(device, pAllocateInfo->commandPool, pCommandBuffers[i], pAllocateInfo->level… in PostCallRecordAllocateCommandBuffers()
657 const VkCommandBuffer *pCommandBuffers) { in PreCallValidateFreeCommandBuffers() argument
664 if (pCommandBuffers[i] != VK_NULL_HANDLE) { in PreCallValidateFreeCommandBuffers()
665 skip |= ValidateCommandBuffer(device, commandPool, pCommandBuffers[i]); in PreCallValidateFreeCommandBuffers()
666 …skip |= ValidateDestroyObject(device, pCommandBuffers[i], kVulkanObjectTypeCommandBuffer, nullptr,… in PreCallValidateFreeCommandBuffers()
674 const VkCommandBuffer *pCommandBuffers) { in PreCallRecordFreeCommandBuffers() argument
676 RecordDestroyObject(device, pCommandBuffers[i], kVulkanObjectTypeCommandBuffer); in PreCallRecordFreeCommandBuffers()
Dgpu_validation.cpp478 const VkCommandBuffer *pCommandBuffers) { in GpuPreCallRecordFreeCommandBuffers() argument
484 auto cb_node = GetCBNode(pCommandBuffers[i]); in GpuPreCallRecordFreeCommandBuffers()
1117 submit_info.pCommandBuffers = &gpu_state->barrier_command_buffer; in SubmitBarrier()
1137 auto cb_node = GetCBNode(submit->pCommandBuffers[i]); in GpuPostCallQueueSubmit()
/external/mesa3d/src/intel/vulkan/
Danv_cmd_buffer.c236 VkCommandBuffer* pCommandBuffers) in anv_AllocateCommandBuffers() argument
246 &pCommandBuffers[i]); in anv_AllocateCommandBuffers()
253 i, pCommandBuffers); in anv_AllocateCommandBuffers()
255 pCommandBuffers[i] = VK_NULL_HANDLE; in anv_AllocateCommandBuffers()
280 const VkCommandBuffer* pCommandBuffers) in anv_FreeCommandBuffers() argument
283 ANV_FROM_HANDLE(anv_cmd_buffer, cmd_buffer, pCommandBuffers[i]); in anv_FreeCommandBuffers()
Danv_dump.c311 .pCommandBuffers = &cmd, in anv_dump_image_to_ppm()
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp1227 …kDevice device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) in allocateCommandBuffers() argument
1231 if (pAllocateInfo && pCommandBuffers) in allocateCommandBuffers()
1236 pCommandBuffers[ndx] = poolImpl->allocate(pAllocateInfo->level); in allocateCommandBuffers()
1242 …ce, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) in freeCommandBuffers() argument
1249 poolImpl->free(pCommandBuffers[ndx]); in freeCommandBuffers()
DvkDeviceDriverImpl.inl365 …e device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) const
367 return m_vk.allocateCommandBuffers(device, pAllocateInfo, pCommandBuffers);
370 …CommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const
372 m_vk.freeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
605 …andBuffer commandBuffer, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const
607 m_vk.cmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuffers);
DvkVirtualDeviceInterface.inl76 …ice, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) const = 0;
77 …ndPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const = 0;
124 …ffer commandBuffer, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const = 0;
DvkConcreteDeviceInterface.inl76 … device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) const;
77 …ommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const;
124 …ndBuffer commandBuffer, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const;
/external/mesa3d/prebuilt-intermediates/vulkan/
Danv_entrypoints.h774 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
775 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
776 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
777 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
778 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
779 …Device device, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers);
780 …e, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
781 …e, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
782 …e, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
783 …e, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
[all …]
Danv_entrypoints.c519 …, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) __attribute_…
520 …ool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
567 …r commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
940 …, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) __attribute_…
941 …ool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
988 …r commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
1361 …, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) __attribute_…
1362 …ool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
1409 …r commandBuffer, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers) __attribute_…
1782 …, const VkCommandBufferAllocateInfo* pAllocateInfo, VkCommandBuffer* pCommandBuffers) __attribute_…
[all …]
/external/deqp/doc/testspecs/VK/
Dapitests.adoc653pCommandBuffers 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…
655pCommandBuffers recorded with the VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT | If vkCmdExecu…
/external/skqp/tools/gpu/mtl/
DMtlTestContext.mm77 submitInfo.pCommandBuffers = &fCommandBuffer;
/external/skia/tools/gpu/mtl/
DMtlTestContext.mm81 submitInfo.pCommandBuffers = &fCommandBuffer;
/external/skqp/tools/sk_app/
DVulkanWindowContext.cpp595 submitInfo.pCommandBuffers = &backbuffer->fTransitionCmdBuffers[0]; in getBackbufferSurface()
667 submitInfo.pCommandBuffers = &backbuffer->fTransitionCmdBuffers[1]; in swapBuffers()
/external/skia/tools/gpu/vk/
DVkTestContext.cpp100 submitInfo.pCommandBuffers = &fCommandBuffer; in insertFence()
/external/skqp/tools/gpu/vk/
DVkTestContext.cpp100 submitInfo.pCommandBuffers = &fCommandBuffer; in insertFence()
/external/skia/tests/
DSurfaceSemaphoreTest.cpp294 submitInfo.pCommandBuffers = &cmdBuffer; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skqp/tests/
DSurfaceSemaphoreTest.cpp294 submitInfo.pCommandBuffers = &cmdBuffer; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()

123