diff --git a/config.features.h b/config.features.h index 15cd85cf16..5724f39f58 100644 --- a/config.features.h +++ b/config.features.h @@ -74,6 +74,12 @@ static const bool _opengl_supp = true; static const bool _opengl_supp = false; #endif +#ifdef HAVE_VULKAN +static const bool _vulkan_supp = true; +#else +static const bool _vulkan_supp = false; +#endif + #if defined(HAVE_OPENGLES) || defined(HAVE_OPENGLES2) || defined(HAVE_OPENGLES3) static const bool _opengles_supp = true; #else diff --git a/retroarch.c b/retroarch.c index 34d9117940..de6265b511 100644 --- a/retroarch.c +++ b/retroarch.c @@ -123,6 +123,7 @@ static void print_features(void) _PSUPP(x11, "X11", "X11 input/video drivers"); _PSUPP(wayland, "wayland", "Wayland input/video drivers"); _PSUPP(thread, "Threads", "Threading support"); + _PSUPP(vulkan, "Vulkan", "Vulkan driver"); _PSUPP(opengl, "OpenGL", "OpenGL driver"); _PSUPP(opengles, "OpenGL ES", "OpenGL ES driver"); _PSUPP(xvideo, "XVideo", "Video driver");