Lines Matching refs:AllocHandle
170 uint64_t AllocHandle(uint64_t type, uint64_t* next_handle) { in AllocHandle() function
181 Handle AllocHandle(VkInstance instance, HandleType::Enum type) { in AllocHandle() function
183 AllocHandle(type, &instance->next_callback_handle)); in AllocHandle()
187 Handle AllocHandle(VkDevice device, HandleType::Enum type) { in AllocHandle() function
189 AllocHandle(type, &device->next_handle[type])); in AllocHandle()
976 *view = AllocHandle<VkBufferView>(device, HandleType::kBufferView); in CreateBufferView()
984 *pool = AllocHandle<VkDescriptorPool>(device, HandleType::kDescriptorPool); in CreateDescriptorPool()
993 AllocHandle<VkDescriptorSet>(device, HandleType::kDescriptorSet); in AllocateDescriptorSets()
1001 *layout = AllocHandle<VkDescriptorSetLayout>( in CreateDescriptorSetLayout()
1010 *event = AllocHandle<VkEvent>(device, HandleType::kEvent); in CreateEvent()
1018 *fence = AllocHandle<VkFence>(device, HandleType::kFence); in CreateFence()
1026 *framebuffer = AllocHandle<VkFramebuffer>(device, HandleType::kFramebuffer); in CreateFramebuffer()
1034 *view = AllocHandle<VkImageView>(device, HandleType::kImageView); in CreateImageView()
1045 pipelines[i] = AllocHandle<VkPipeline>(device, HandleType::kPipeline); in CreateGraphicsPipelines()
1056 pipelines[i] = AllocHandle<VkPipeline>(device, HandleType::kPipeline); in CreateComputePipelines()
1064 *cache = AllocHandle<VkPipelineCache>(device, HandleType::kPipelineCache); in CreatePipelineCache()
1073 AllocHandle<VkPipelineLayout>(device, HandleType::kPipelineLayout); in CreatePipelineLayout()
1081 *pool = AllocHandle<VkQueryPool>(device, HandleType::kQueryPool); in CreateQueryPool()
1089 *renderpass = AllocHandle<VkRenderPass>(device, HandleType::kRenderPass); in CreateRenderPass()
1097 *sampler = AllocHandle<VkSampler>(device, HandleType::kSampler); in CreateSampler()
1105 *semaphore = AllocHandle<VkSemaphore>(device, HandleType::kSemaphore); in CreateSemaphore()
1113 *module = AllocHandle<VkShaderModule>(device, HandleType::kShaderModule); in CreateShaderModule()
1121 *callback = AllocHandle<VkDebugReportCallbackEXT>( in CreateDebugReportCallbackEXT()