mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
render/vulkan: remove exts arg from vulkan_instance_create()
This commit is contained in:
parent
7a42392da2
commit
2ac2835a1f
3 changed files with 6 additions and 26 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue