Home | History | Annotate | Download | only in vulkan

Lines Matching refs:commandPool

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);
635 void DeviceDriver::trimCommandPoolKHR (VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlagsKHR flags) const
637 m_vk.trimCommandPoolKHR(device, commandPool, flags);