mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-18 01:21:32 +00:00
- Update menu to match new vid_glswfb config
- Added vid_glswfb to menu on Linux
This commit is contained in:
parent
4545bb2fa1
commit
9ebf1ec9a2
2 changed files with 12 additions and 1 deletions
|
@ -2361,6 +2361,7 @@ OPTVAL_EVERYTHING = "Everything";
|
|||
OPTVAL_FULLSCREENONLY = "Fullscreen only";
|
||||
OPTVAL_GL = "OpenGL";
|
||||
OPTVAL_D3D = "Direct3D";
|
||||
OPTVAL_SDL = "SDL";
|
||||
OPTVAL_HWPOLY = "OpenGL-Accelerated";
|
||||
OPTVAL_SWDOOM = "Doom Software Renderer";
|
||||
OPTVAL_DEDICATED = "High-Performance";
|
||||
|
|
|
@ -1771,6 +1771,12 @@ OptionValue "GLD3D"
|
|||
1, "$OPTVAL_GL"
|
||||
}
|
||||
|
||||
OptionValue "GLSDL"
|
||||
{
|
||||
0, "$OPTVAL_SDL"
|
||||
1, "$OPTVAL_GL"
|
||||
}
|
||||
|
||||
OptionMenu RendererMenu
|
||||
{
|
||||
Title "$RNDMNU_TITLE"
|
||||
|
@ -1779,7 +1785,11 @@ OptionMenu RendererMenu
|
|||
Option "$RNDMNU_POLY", "r_polyrenderer", "OnOff"
|
||||
IfOption(Windows)
|
||||
{
|
||||
Option "$RNDMNU_CANVAS", "vid_used3d", "D3DGL"
|
||||
Option "$RNDMNU_CANVAS", "vid_glswfb", "GLD3D"
|
||||
}
|
||||
IfOption(Linux)
|
||||
{
|
||||
Option "$RNDMNU_CANVAS", "vid_glswfb", "GLSDL"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue