Lines Matching defs:device
24 vn_CreateShaderModule(VkDevice device,
29 struct vn_device *dev = vn_device_from_handle(device);
42 vn_async_vkCreateShaderModule(dev->instance, device, pCreateInfo, NULL,
51 vn_DestroyShaderModule(VkDevice device,
55 struct vn_device *dev = vn_device_from_handle(device);
63 vn_async_vkDestroyShaderModule(dev->instance, device, shaderModule, NULL);
72 vn_CreatePipelineLayout(VkDevice device,
77 struct vn_device *dev = vn_device_from_handle(device);
91 vn_async_vkCreatePipelineLayout(dev->instance, device, pCreateInfo, NULL,
100 vn_DestroyPipelineLayout(VkDevice device,
104 struct vn_device *dev = vn_device_from_handle(device);
113 vn_async_vkDestroyPipelineLayout(dev->instance, device, pipelineLayout,
123 vn_CreatePipelineCache(VkDevice device,
129 struct vn_device *dev = vn_device_from_handle(device);
154 vn_async_vkCreatePipelineCache(dev->instance, device, pCreateInfo, NULL,
163 vn_DestroyPipelineCache(VkDevice device,
168 struct vn_device *dev = vn_device_from_handle(device);
177 vn_async_vkDestroyPipelineCache(dev->instance, device, pipelineCache,
185 vn_GetPipelineCacheData(VkDevice device,
191 struct vn_device *dev = vn_device_from_handle(device);
197 result = vn_call_vkGetPipelineCacheData(dev->instance, device,
221 vn_call_vkGetPipelineCacheData(dev->instance, device, pipelineCache,
232 vn_MergePipelineCaches(VkDevice device,
238 struct vn_device *dev = vn_device_from_handle(device);
240 vn_async_vkMergePipelineCaches(dev->instance, device, dstCache,
366 vn_CreateGraphicsPipelines(VkDevice device,
374 struct vn_device *dev = vn_device_from_handle(device);
406 vn_async_vkCreateGraphicsPipelines(dev->instance, device, pipelineCache,
417 vn_CreateComputePipelines(VkDevice device,
425 struct vn_device *dev = vn_device_from_handle(device);
447 vn_async_vkCreateComputePipelines(dev->instance, device, pipelineCache,
455 vn_DestroyPipeline(VkDevice device,
460 struct vn_device *dev = vn_device_from_handle(device);
468 vn_async_vkDestroyPipeline(dev->instance, device, _pipeline, NULL);