HomeSort by relevance Sort by last modified time
    Searched refs:commandPool (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/vulkan-validation-layers/layers/
threading.cpp 305 startWriteObject(my_data, pAllocateInfo->commandPool);
309 finishWriteObject(my_data, pAllocateInfo->commandPool);
315 command_pool_map[pCommandBuffers[index]] = pAllocateInfo->commandPool;
323 void VKAPI_CALL vkFreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount,
330 startWriteObject(my_data, commandPool);
335 pTable->FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
337 finishWriteObject(my_data, commandPool);
object_tracker.h 462 static void alloc_command_buffer(VkDevice device, VkCommandPool commandPool, VkCommandBuffer vkObj,
472 pNewObjNode->parentObj = (uint64_t)commandPool;
484 static void free_command_buffer(VkDevice device, VkCommandPool commandPool, VkCommandBuffer commandBuffer) {
489 if (pNode->parentObj != (uint64_t)(commandPool)) {
494 reinterpret_cast<uint64_t>(commandBuffer), pNode->parentObj, (uint64_t)(commandPool));
    [all...]
device_limits.cpp 482 vkDestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks *pAllocator) {
484 ->device_dispatch_table->DestroyCommandPool(device, commandPool, pAllocator);
488 vkResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) {
490 ->device_dispatch_table->ResetCommandPool(device, commandPool, flags);
502 vkFreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t count, const VkCommandBuffer *pCommandBuffers) {
504 ->device_dispatch_table->FreeCommandBuffers(device, commandPool, count, pCommandBuffers);
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtil.cpp 58 return Move<VkCommandBuffer>(check<VkCommandBuffer>(object), Deleter<VkCommandBuffer>(vk, device, pAllocateInfo->commandPool));
vkDeviceDriverImpl.inl 350 void DeviceDriver::destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const
352 m_vk.destroyCommandPool(device, commandPool, pAllocator);
355 VkResult DeviceDriver::resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const
357 return m_vk.resetCommandPool(device, commandPool, flags);
365 void DeviceDriver::freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const
367 m_vk.freeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffers);
vkNullDriver.cpp 170 VK_NULL_DEFINE_DEVICE_OBJ(CommandPool);
644 pCommandBuffers[ndx] = reinterpret_cast<VkCommandBuffer>(new CommandBuffer(device, pAllocateInfo->commandPool, pAllocateInfo->level));
651 VKAPI_ATTR void VKAPI_CALL freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers)
654 DE_UNREF(commandPool);
vkConcreteDeviceInterface.inl 73 virtual void destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const;
74 virtual VkResult resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const;
76 virtual void freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const;
vkVirtualDeviceInterface.inl 73 virtual void destroyCommandPool (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator) const = 0;
74 virtual VkResult resetCommandPool (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags) const = 0;
76 virtual void freeCommandBuffers (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers) const = 0;
vkFunctionPointerTypes.inl 90 typedef VKAPI_ATTR void (VKAPI_CALL* DestroyCommandPoolFunc) (VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator);
91 typedef VKAPI_ATTR VkResult (VKAPI_CALL* ResetCommandPoolFunc) (VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags);
93 typedef VKAPI_ATTR void (VKAPI_CALL* FreeCommandBuffersFunc) (VkDevice device, VkCommandPool commandPool, deUint32 commandBufferCount, const VkCommandBuffer* pCommandBuffers);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.cpp 101 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
107 commandPool, // VkCommandPool commandPool;
vktComputeTestsUtil.hpp 87 const vk::VkCommandPool commandPool);
  /external/deqp/external/vulkancts/modules/vulkan/
vktSynchronization.cpp 400 vk::Move<VkCommandPool> commandPool;
411 commandPool = createCommandPool(deviceInterface, device, &commandPoolInfo, DE_NULL);
416 commandBufferInfo.commandPool = commandPool.get();
421 *commandBufferRef = vk::Move<VkCommandBuffer>(vk::check<VkCommandBuffer>(commandBuffer), Deleter<VkCommandBuffer>(deviceInterface, device, commandPool.get()));
422 *commandPoolRef = commandPool;
578 vk::Move<VkCommandPool> commandPool;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBufferSparseBinding.cpp 238 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, *m_logicalDevice, computeQueue.queueFamilyIndex));
239 const Unique<VkCommandBuffer> commandBuffer(makeCommandBuffer(deviceInterface, *m_logicalDevice, *commandPool));
vktSparseResourcesBufferMemoryAliasing.cpp 298 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, *m_logicalDevice, computeQueue.queueFamilyIndex));
299 const Unique<VkCommandBuffer> commandBuffer(makeCommandBuffer(deviceInterface, *m_logicalDevice, *commandPool));
vktSparseResourcesBufferSparseResidency.cpp 296 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, *m_logicalDevice, computeQueue.queueFamilyIndex));
297 const Unique<VkCommandBuffer> commandBuffer(makeCommandBuffer(deviceInterface, *m_logicalDevice, *commandPool));
vktSparseResourcesImageSparseBinding.cpp 282 const Unique<VkCommandPool> commandPool(makeCommandPool(deviceInterface, *m_logicalDevice, computeQueue.queueFamilyIndex));
283 const Unique<VkCommandBuffer> commandBuffer(makeCommandBuffer(deviceInterface, *m_logicalDevice, *commandPool));
vktSparseResourcesTestsUtil.cpp 284 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
290 commandPool, // VkCommandPool commandPool;
vktSparseResourcesTestsUtil.hpp 121 const vk::VkCommandPool commandPool);
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageTestsUtil.cpp 237 Move<VkCommandBuffer> makeCommandBuffer (const DeviceInterface& vk, const VkDevice device, const VkCommandPool commandPool)
243 commandPool, // VkCommandPool commandPool;
vktImageTestsUtil.hpp 114 const vk::VkCommandPool commandPool);
  /frameworks/native/vulkan/libvulkan/
api_gen.cpp 366 VKAPI_ATTR void DestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator);
367 VKAPI_ATTR VkResult ResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags);
369 VKAPI_ATTR void FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryPipelineBarrierTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSwapchainTests.cpp     [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 117 VKAPI_ATTR void DestroyCommandPool(VkDevice device, VkCommandPool commandPool, const VkAllocationCallbacks* pAllocator);
118 VKAPI_ATTR VkResult ResetCommandPool(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags);
120 VKAPI_ATTR void FreeCommandBuffers(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const VkCommandBuffer* pCommandBuffers);
  /external/vulkan-validation-layers/loader/
trampoline.c     [all...]

Completed in 1085 milliseconds

1 2 3