mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
- Added menu options for pal tonemap tweaks.
# Conflicts: # wadsrc/static/language.enu
This commit is contained in:
parent
494be00ce5
commit
6263704741
2 changed files with 13 additions and 0 deletions
|
@ -2645,6 +2645,8 @@ GLPREFMNU_LENS = "Lens distortion effect";
|
||||||
GLPREFMNU_SSAO = "Ambient occlusion quality";
|
GLPREFMNU_SSAO = "Ambient occlusion quality";
|
||||||
GLPREFMNU_SSAO_PORTALS = "Portals with AO";
|
GLPREFMNU_SSAO_PORTALS = "Portals with AO";
|
||||||
GLPREFMNU_FXAA = "FXAA Quality";
|
GLPREFMNU_FXAA = "FXAA Quality";
|
||||||
|
GLPREFMNU_PALTONEMAPORDER = "Tonemap Palette Order";
|
||||||
|
GLPREFMNU_PALTONEMAPPOWER = "Tonemap Palette Exponent";
|
||||||
|
|
||||||
// Option Values
|
// Option Values
|
||||||
OPTVAL_SMART = "Smart";
|
OPTVAL_SMART = "Smart";
|
||||||
|
@ -2728,3 +2730,5 @@ OPTVAL_LOW = "Low";
|
||||||
OPTVAL_MEDIUM = "Medium";
|
OPTVAL_MEDIUM = "Medium";
|
||||||
OPTVAL_HIGH = "High";
|
OPTVAL_HIGH = "High";
|
||||||
OPTVAL_EXTREME = "Extreme";
|
OPTVAL_EXTREME = "Extreme";
|
||||||
|
OPTVAL_OBVERSEFIRST = "Obverse";
|
||||||
|
OPTVAL_REVERSEFIRST = "Reverse";
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
OptionValue "LookupOrder"
|
||||||
|
{
|
||||||
|
0, "$OPTVAL_OBVERSEFIRST"
|
||||||
|
1, "$OPTVAL_REVERSEFIRST"
|
||||||
|
}
|
||||||
|
|
||||||
OptionValue "SpriteclipModes"
|
OptionValue "SpriteclipModes"
|
||||||
{
|
{
|
||||||
0, "$OPTVAL_NEVER"
|
0, "$OPTVAL_NEVER"
|
||||||
|
@ -249,4 +255,7 @@ OptionMenu "GLPrefOptions"
|
||||||
Option "$GLPREFMNU_SSAO", gl_ssao, "SSAOModes"
|
Option "$GLPREFMNU_SSAO", gl_ssao, "SSAOModes"
|
||||||
Slider "$GLPREFMNU_SSAO_PORTALS", gl_ssao_portals, 0.0, 4.0, 1.0, 0
|
Slider "$GLPREFMNU_SSAO_PORTALS", gl_ssao_portals, 0.0, 4.0, 1.0, 0
|
||||||
Option "$GLPREFMNU_FXAA", gl_fxaa, "FXAAQuality"
|
Option "$GLPREFMNU_FXAA", gl_fxaa, "FXAAQuality"
|
||||||
|
StaticText " "
|
||||||
|
Slider "$GLPREFMNU_PALTONEMAPPOWER", gl_paltonemap_powtable, 0.2, 3.0, 0.1, 0
|
||||||
|
Option "$GLPREFMNU_PALTONEMAPORDER", gl_paltonemap_reverselookup, "LookupOrder"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue