| 269 | } |
| 270 | |
| 271 | void VulkanPipeline::Destroy(VkDevice device) |
| 272 | { |
| 273 | vkDeviceWaitIdle(device); |
| 274 | Dump(device); |
| 275 | ResetCache(device); |
| 276 | vkDestroyPipelineCache(device, m_vulkanPipelineCache, nullptr); |
| 277 | } |
| 278 | |
| 279 | VkPipeline VulkanPipeline::GetPipeline(VkDevice device, PipelineKey const & key) |
| 280 | { |
no outgoing calls