Lines Matching refs:pAllocator
35 const VkAllocationCallbacks* pAllocator) in createGraphicsPipeline() argument
38 VK_CHECK(vk.createGraphicsPipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createGraphicsPipeline()
39 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createGraphicsPipeline()
46 const VkAllocationCallbacks* pAllocator) in createComputePipeline() argument
49 VK_CHECK(vk.createComputePipelines(device, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createComputePipeline()
50 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createComputePipeline()
57 const VkAllocationCallbacks* pAllocator) in createRayTracingPipelineNV() argument
60 …VK_CHECK(vk.createRayTracingPipelinesNV(device, pipelineCache, 1u, pCreateInfo, pAllocator, &objec… in createRayTracingPipelineNV()
61 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createRayTracingPipelineNV()
69 const VkAllocationCallbacks* pAllocator) in createRayTracingPipelineKHR() argument
72 …acingPipelinesKHR(device, deferredOperation, pipelineCache, 1u, pCreateInfo, pAllocator, &object)); in createRayTracingPipelineKHR()
73 return Move<VkPipeline>(check<VkPipeline>(object), Deleter<VkPipeline>(vk, device, pAllocator)); in createRayTracingPipelineKHR()
95 const VkAllocationCallbacks* pAllocator) in createSemaphore() argument
105 return createSemaphore(vk, device, &createInfo, pAllocator); in createSemaphore()
113 const VkAllocationCallbacks* pAllocator) in createSemaphoreType() argument
131 return createSemaphore(vk, device, &createInfo, pAllocator); in createSemaphoreType()
137 const VkAllocationCallbacks* pAllocator) in createFence() argument
147 return createFence(vk, device, &createInfo, pAllocator); in createFence()
154 const VkAllocationCallbacks* pAllocator) in createCommandPool() argument
165 return createCommandPool(vk, device, &createInfo, pAllocator); in createCommandPool()