diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-02 18:41:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-02 18:41:53 +0200 |
commit | 2beea262bee317d3d566d475f46f45c8d7a7f94e (patch) | |
tree | 17fd255b654ea16a5936f26dfba60441daf8e033 /doc/classes | |
parent | aa0ed471222738836767ae48f69fd9f21f7a9ae4 (diff) | |
parent | aa3ef8893b78e26ecbca35b1bcdd56244a88063f (diff) |
Merge pull request #31571 from NeoSpark314/tonemapping_none_option
Don't clamp color to [0, 1] in Linear tonemapping
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Environment.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Environment.xml b/doc/classes/Environment.xml index fcbd8a2193..9a943aba51 100644 --- a/doc/classes/Environment.xml +++ b/doc/classes/Environment.xml @@ -306,7 +306,7 @@ Replace glow blending mode. Replaces all pixels' color by the glow value. </constant> <constant name="TONE_MAPPER_LINEAR" value="0" enum="ToneMapper"> - Linear tonemapper operator. Reads the linear data and performs an exposure adjustment. + Linear tonemapper operator. Reads the linear data and passes it on unmodified. </constant> <constant name="TONE_MAPPER_REINHARDT" value="1" enum="ToneMapper"> Reinhardt tonemapper operator. Performs a variation on rendered pixels' colors by this formula: [code]color = color / (1 + color)[/code]. |