- force this branch to always use the poly backend

This commit is contained in:
Magnus Norddahl 2019-07-24 21:45:37 +02:00
parent e6f6f10e81
commit 9da46d0e0a

View file

@ -130,10 +130,9 @@ void I_InitGraphics ()
// are the active app. Huh? // are the active app. Huh?
} }
if (vid_enablevulkan == 2) #if 1 // always use poly backend on this branch, for now.
{
Video = new Win32PolyVideo(); Video = new Win32PolyVideo();
} #else
#ifdef HAVE_VULKAN #ifdef HAVE_VULKAN
else if (vid_enablevulkan == 1) else if (vid_enablevulkan == 1)
{ {
@ -153,6 +152,7 @@ void I_InitGraphics ()
{ {
Video = new Win32GLVideo(); Video = new Win32GLVideo();
} }
#endif
if (Video == NULL) if (Video == NULL)
I_FatalError ("Failed to initialize display"); I_FatalError ("Failed to initialize display");