From b9ce94b36082ce3eccb03ce225d50a6c1f945f11 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 16 May 2016 08:36:22 +0200 Subject: [PATCH] (WGL) Change ifdef --- gfx/video_context_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/video_context_driver.c b/gfx/video_context_driver.c index 2c3f3b7e54..6df37d8023 100644 --- a/gfx/video_context_driver.c +++ b/gfx/video_context_driver.c @@ -46,7 +46,7 @@ static const gfx_ctx_driver_t *gfx_ctx_drivers[] = { #if defined(HAVE_OPENDINGUX_FBDEV) &gfx_ctx_opendingux_fbdev, #endif -#if defined(_WIN32) && defined(HAVE_OPENGL) +#if defined(_WIN32) && (defined(HAVE_OPENGL) || defined(HAVE_VULKAN)) &gfx_ctx_wgl, #endif #if defined(HAVE_WAYLAND)