From a6ff59c91d17be322963e0f65a439e3cf2480aab Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Sun, 23 Jan 2022 00:21:05 +0100 Subject: [PATCH] set vulkan version to 1.2 in vkvg_device_create --- src/vkvg_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vkvg_device.c b/src/vkvg_device.c index c893d2b..597b66a 100644 --- a/src/vkvg_device.c +++ b/src/vkvg_device.c @@ -40,7 +40,7 @@ VkvgDevice vkvg_device_create(VkSampleCountFlags samples, bool deferredResolve) _instance_extensions_check_release(); - VkhApp app = vkh_app_create(1, 1, "vkvg", 0, NULL, enabledExtsCount, enabledExts); + VkhApp app = vkh_app_create(1, 2, "vkvg", 0, NULL, enabledExtsCount, enabledExts); #if defined(DEBUG) && defined (VKVG_DBG_UTILS) if (dbgUtilsSupported) -- 2.47.3