mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Added r_blendmethod to the menu.
This commit is contained in:
parent
9ece249dbb
commit
2fa13396f2
2 changed files with 11 additions and 0 deletions
|
@ -1780,6 +1780,8 @@ DSPLYMNU_BRIGHTNESS = "Brightness";
|
|||
DSPLYMNU_VSYNC = "Vertical Sync";
|
||||
DSPLYMNU_CAPFPS = "Rendering Interpolation";
|
||||
DSPLYMNU_COLUMNMETHOD = "Column render mode";
|
||||
DSPLYMNU_BLENDMETHOD = "Transparency render mode";
|
||||
|
||||
DSPLYMNU_WIPETYPE = "Screen wipe style";
|
||||
DSPLYMNU_SHOWENDOOM = "Show ENDOOM screen";
|
||||
DSPLYMNU_BLOODFADE = "Blood Flash Intensity";
|
||||
|
@ -2189,6 +2191,8 @@ OPTVAL_INVERTED = "Inverted";
|
|||
OPTVAL_NOTINVERTED = "Not Inverted";
|
||||
OPTVAL_ORIGINAL = "Original";
|
||||
OPTVAL_OPTIMIZED = "Optimized";
|
||||
OPTVAL_CLASSIC = "Classic (Faster)";
|
||||
OPTVAL_PRECISE = "Precise";
|
||||
OPTVAL_NORMAL = "Normal";
|
||||
OPTVAL_STRETCH = "Stretch";
|
||||
OPTVAL_CAPPED = "Capped";
|
||||
|
|
|
@ -600,6 +600,12 @@ OptionValue ColumnMethods
|
|||
1.0, "$OPTVAL_OPTIMIZED"
|
||||
}
|
||||
|
||||
OptionValue BlendMethods
|
||||
{
|
||||
0.0, "$OPTVAL_CLASSIC"
|
||||
1.0, "$OPTVAL_PRECISE"
|
||||
}
|
||||
|
||||
OptionValue SkyModes
|
||||
{
|
||||
0.0, "$OPTVAL_NORMAL"
|
||||
|
@ -671,6 +677,7 @@ OptionMenu "VideoOptions"
|
|||
Slider "$DSPLYMNU_PICKUPFADE", "pickup_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||
Slider "$DSPLYMNU_WATERFADE", "underwater_fade_scalar", 0.0, 1.0, 0.05, 2
|
||||
Option "$DSPLYMNU_COLUMNMETHOD", "r_columnmethod", "ColumnMethods"
|
||||
Option "$DSPLYMNU_BLENDMETHOD", "r_blendmethod", "BlendMethods"
|
||||
|
||||
StaticText " "
|
||||
Option "$DSPLYMNU_WIPETYPE", "wipetype", "Wipes"
|
||||
|
|
Loading…
Reference in a new issue