mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Add AgX tonemapper option to Environment
Technical implementation notes: - Moved linearization step to before the outset matrix is applied and changed polynomial contrast curve approximation. - This does *not* implement Blender's chroma rotation to address hue shift. This hue rotation was found to have a significant performance impact. - Improved performance by combining the AgX outset matrix with the Rec 2020 matrix. Co-authored-by: Allen Pestaluky <allenpestaluky@gmail.com> Co-authored-by: Clay John <claynjohn@gmail.com>
This commit is contained in:
parent
d2ada64a03
commit
084e84be78
8 changed files with 174 additions and 18 deletions
|
@ -3072,6 +3072,7 @@ void RenderingServer::_bind_methods() {
|
|||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_REINHARD);
|
||||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_FILMIC);
|
||||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_ACES);
|
||||
BIND_ENUM_CONSTANT(ENV_TONE_MAPPER_AGX);
|
||||
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_DISABLED);
|
||||
BIND_ENUM_CONSTANT(ENV_SSR_ROUGHNESS_QUALITY_LOW);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue