diff --git a/Makefile.common b/Makefile.common index 1b6b86d46e..a9d470edc6 100644 --- a/Makefile.common +++ b/Makefile.common @@ -860,7 +860,7 @@ ifeq ($(HAVE_VULKAN), 1) $(GLSLANG_OBJ) \ $(SPIRV_CROSS_OBJ) - ifeq ($(HAVE_VULKAN_KHR_DISPLAY), 1) + ifeq ($(HAVE_VULKAN_DISPLAY), 1) OBJ += gfx/drivers_context/khr_display_ctx.o endif ifeq ($(HAVE_MENU_COMMON), 1) diff --git a/gfx/video_context_driver.c b/gfx/video_context_driver.c index 64cd829553..03a8304fae 100644 --- a/gfx/video_context_driver.c +++ b/gfx/video_context_driver.c @@ -84,7 +84,7 @@ static const gfx_ctx_driver_t *gfx_ctx_drivers[] = { #ifdef EMSCRIPTEN &gfx_ctx_emscripten, #endif -#if defined(HAVE_VULKAN) && defined(HAVE_VULKAN_KHR_DISPLAY) +#if defined(HAVE_VULKAN) && defined(HAVE_VULKAN_DISPLAY) &gfx_ctx_khr_display, #endif &gfx_ctx_null, diff --git a/griffin/griffin.c b/griffin/griffin.c index 95e85d39d7..36021d3388 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -168,7 +168,7 @@ VIDEO CONTEXT #ifdef HAVE_VULKAN #include "../gfx/common/vulkan_common.c" #include "../libretro-common/vulkan/vulkan_symbol_wrapper.c" -#ifdef HAVE_VULKAN_KHR_DISPLAY +#ifdef HAVE_VULKAN_DISPLAY #include "../gfx/drivers_context/khr_display_ctx.c" #endif #endif diff --git a/qb/config.params.sh b/qb/config.params.sh index 29096be19a..7c09abecfa 100644 --- a/qb/config.params.sh +++ b/qb/config.params.sh @@ -82,7 +82,7 @@ HAVE_CHEEVOS=yes # Retro Achievements HAVE_SHADERPIPELINE=yes # Additional shader-based pipelines C89_SHADERPIPELINE=no HAVE_VULKAN=auto # Vulkan support -HAVE_VULKAN_KHR_DISPLAY=yes # Vulkan KHR display backend support +HAVE_VULKAN_DISPLAY=yes # Vulkan KHR display backend support C89_VULKAN=no HAVE_RPNG=yes # RPNG support HAVE_RBMP=yes # RBMP support