diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-04 14:12:38 +0100 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2022-11-04 14:12:38 +0100 |
commit | 2ac2835a1f1c3cce887b03645ed4ffd7ba1f54e0 (patch) | |
tree | b93a11e17cbdf5f36579562aba2aed5e019336b4 /include | |
parent | 7a42392da2957e9c1ef0395d7a52da25c170fbbf (diff) |
render/vulkan: remove exts arg from vulkan_instance_create()
Diffstat (limited to 'include')
-rw-r--r-- | include/render/vulkan.h | 6 |
1 files changed, 1 insertions, 5 deletions
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. |