From 2ac2835a1f1c3cce887b03645ed4ffd7ba1f54e0 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 4 Nov 2022 14:12:38 +0100 Subject: render/vulkan: remove exts arg from vulkan_instance_create() --- include/render/vulkan.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'include') diff --git a/include/render/vulkan.h b/include/render/vulkan.h index e87c564c..a2591b3b 100644 --- a/include/render/vulkan.h +++ b/include/render/vulkan.h @@ -25,13 +25,9 @@ struct wlr_vk_instance { }; // Creates and initializes a vulkan instance. -// Will try to enable the given extensions but not fail if they are not -// available which can later be checked by the caller. // The debug parameter determines if validation layers are enabled and a // debug messenger created. -// `compositor_name` and `compositor_version` are passed to the vulkan driver. -struct wlr_vk_instance *vulkan_instance_create(size_t ext_count, - const char **exts, bool debug); +struct wlr_vk_instance *vulkan_instance_create(bool debug); void vulkan_instance_destroy(struct wlr_vk_instance *ini); // Logical vulkan device state. -- cgit v1.2.3