render/vulkan: remove exts arg from vulkan_instance_create()

This commit is contained in:
Simon Ser 2022-11-04 14:12:38 +01:00
parent 7a42392da2
commit 2ac2835a1f
3 changed files with 6 additions and 26 deletions

View file

@ -1713,7 +1713,7 @@ struct wlr_renderer *wlr_vk_renderer_create_with_drm_fd(int drm_fd) {
// NOTE: we could add functionality to allow the compositor passing its
// name and version to this function. Just use dummies until then,
// shouldn't be relevant to the driver anyways
struct wlr_vk_instance *ini = vulkan_instance_create(0, NULL, default_debug);
struct wlr_vk_instance *ini = vulkan_instance_create(default_debug);
if (!ini) {
wlr_log(WLR_ERROR, "creating vulkan instance for renderer failed");
return NULL;