mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-01 16:41:22 +00:00
- force this branch to always use the poly backend
This commit is contained in:
parent
e6f6f10e81
commit
9da46d0e0a
1 changed files with 4 additions and 4 deletions
|
@ -130,10 +130,9 @@ void I_InitGraphics ()
|
|||
// are the active app. Huh?
|
||||
}
|
||||
|
||||
if (vid_enablevulkan == 2)
|
||||
{
|
||||
Video = new Win32PolyVideo();
|
||||
}
|
||||
#if 1 // always use poly backend on this branch, for now.
|
||||
Video = new Win32PolyVideo();
|
||||
#else
|
||||
#ifdef HAVE_VULKAN
|
||||
else if (vid_enablevulkan == 1)
|
||||
{
|
||||
|
@ -153,6 +152,7 @@ void I_InitGraphics ()
|
|||
{
|
||||
Video = new Win32GLVideo();
|
||||
}
|
||||
#endif
|
||||
|
||||
if (Video == NULL)
|
||||
I_FatalError ("Failed to initialize display");
|
||||
|
|
Loading…
Reference in a new issue