2022-07-27 16:14:23 +10:00
|
|
|
/**************************************************************************/
|
|
|
|
|
/* environment_storage.cpp */
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
/* This file is part of: */
|
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
|
/* https://godotengine.org */
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
|
/* */
|
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
|
/* the following conditions: */
|
|
|
|
|
/* */
|
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
|
/* */
|
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "environment_storage.h"
|
|
|
|
|
|
2023-08-03 22:10:03 +10:00
|
|
|
// Storage
|
|
|
|
|
|
|
|
|
|
RendererEnvironmentStorage *RendererEnvironmentStorage::singleton = nullptr;
|
|
|
|
|
|
|
|
|
|
RendererEnvironmentStorage::RendererEnvironmentStorage() {
|
|
|
|
|
singleton = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RendererEnvironmentStorage::~RendererEnvironmentStorage() {
|
|
|
|
|
singleton = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Environment
|
|
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
RID RendererEnvironmentStorage::environment_allocate() {
|
|
|
|
|
return environment_owner.allocate_rid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_initialize(RID p_rid) {
|
|
|
|
|
environment_owner.initialize_rid(p_rid, Environment());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_free(RID p_rid) {
|
|
|
|
|
environment_owner.free(p_rid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Background
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_background(RID p_env, RS::EnvironmentBG p_bg) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->background = p_bg;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_sky(RID p_env, RID p_sky) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->sky = p_sky;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_sky_custom_fov(RID p_env, float p_scale) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->sky_custom_fov = p_scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_sky_orientation(RID p_env, const Basis &p_orientation) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->sky_orientation = p_orientation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_bg_color(RID p_env, const Color &p_color) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->bg_color = p_color;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-31 16:20:24 -07:00
|
|
|
void RendererEnvironmentStorage::environment_set_bg_energy(RID p_env, float p_multiplier, float p_intensity) {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-31 16:20:24 -07:00
|
|
|
env->bg_energy_multiplier = p_multiplier;
|
|
|
|
|
env->bg_intensity = p_intensity;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_canvas_max_layer(RID p_env, int p_max_layer) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->canvas_max_layer = p_max_layer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_ambient_light(RID p_env, const Color &p_color, RS::EnvironmentAmbientSource p_ambient, float p_energy, float p_sky_contribution, RS::EnvironmentReflectionSource p_reflection_source) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->ambient_light = p_color;
|
|
|
|
|
env->ambient_source = p_ambient;
|
|
|
|
|
env->ambient_light_energy = p_energy;
|
|
|
|
|
env->ambient_sky_contribution = p_sky_contribution;
|
|
|
|
|
env->reflection_source = p_reflection_source;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentBG RendererEnvironmentStorage::environment_get_background(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_BG_CLEAR_COLOR);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->background;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RID RendererEnvironmentStorage::environment_get_sky(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RID());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sky;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sky_custom_fov(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sky_custom_fov;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Basis RendererEnvironmentStorage::environment_get_sky_orientation(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Basis());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sky_orientation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Color RendererEnvironmentStorage::environment_get_bg_color(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Color());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->bg_color;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-31 16:20:24 -07:00
|
|
|
float RendererEnvironmentStorage::environment_get_bg_energy_multiplier(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-31 16:20:24 -07:00
|
|
|
return env->bg_energy_multiplier;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_bg_intensity(RID p_env) const {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-31 16:20:24 -07:00
|
|
|
return env->bg_intensity;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RendererEnvironmentStorage::environment_get_canvas_max_layer(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->canvas_max_layer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentAmbientSource RendererEnvironmentStorage::environment_get_ambient_source(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_AMBIENT_SOURCE_BG);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ambient_source;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Color RendererEnvironmentStorage::environment_get_ambient_light(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Color());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ambient_light;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ambient_light_energy(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ambient_light_energy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ambient_sky_contribution(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ambient_sky_contribution;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentReflectionSource RendererEnvironmentStorage::environment_get_reflection_source(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_REFLECTION_SOURCE_BG);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->reflection_source;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-17 20:44:47 +01:00
|
|
|
void RendererEnvironmentStorage::environment_set_camera_feed_id(RID p_env, int p_camera_feed_id) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL(env);
|
|
|
|
|
env->camera_feed_id = p_camera_feed_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RendererEnvironmentStorage::environment_get_camera_feed_id(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, -1);
|
|
|
|
|
return env->camera_feed_id;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
// Tonemap
|
|
|
|
|
|
2022-07-31 16:20:24 -07:00
|
|
|
void RendererEnvironmentStorage::environment_set_tonemap(RID p_env, RS::EnvironmentToneMapper p_tone_mapper, float p_exposure, float p_white) {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->exposure = p_exposure;
|
|
|
|
|
env->tone_mapper = p_tone_mapper;
|
2025-05-29 12:19:00 -04:00
|
|
|
env->white = p_white;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentToneMapper RendererEnvironmentStorage::environment_get_tone_mapper(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_TONE_MAPPER_LINEAR);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->tone_mapper;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_exposure(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->exposure;
|
|
|
|
|
}
|
|
|
|
|
|
2025-05-29 12:19:00 -04:00
|
|
|
float RendererEnvironmentStorage::environment_get_white(RID p_env, bool p_limit_agx_white) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
|
|
|
|
|
|
|
|
|
const float output_max_value = 1.0; // SDR always has an output_max_value of 1.0.
|
|
|
|
|
|
|
|
|
|
// Glow with screen blend mode does not work when white < 1.0, so make sure
|
|
|
|
|
// it is at least 1.0 for all tonemappers:
|
|
|
|
|
if (env->tone_mapper == RS::ENV_TONE_MAPPER_LINEAR) {
|
|
|
|
|
return output_max_value;
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_FILMIC || env->tone_mapper == RS::ENV_TONE_MAPPER_ACES) {
|
|
|
|
|
// Filmic and ACES only support SDR; their white is stable regardless
|
|
|
|
|
// of output_max_value.
|
|
|
|
|
return MAX(1.0, env->white);
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_AGX) {
|
|
|
|
|
// AgX works best with a high white. 2.0 is the minimum required for
|
|
|
|
|
// good behavior with Mobile rendering method.
|
|
|
|
|
if (p_limit_agx_white) {
|
|
|
|
|
return 2.0;
|
|
|
|
|
} else {
|
|
|
|
|
float agx_white = MAX(2.0, env->white);
|
|
|
|
|
// Instead of constraining by matching the output_max_value, constrain
|
|
|
|
|
// by multiplying to ensure the desired non-uniform scaling behavior
|
|
|
|
|
// is maintained in the shoulder.
|
|
|
|
|
return agx_white * output_max_value;
|
|
|
|
|
}
|
|
|
|
|
} else { // Reinhard
|
|
|
|
|
// The Reinhard tonemapper is not designed to have a white parameter
|
|
|
|
|
// that is less than the output max value. This is especially important
|
|
|
|
|
// in the variable Extended Dynamic Range (EDR) paradigm where the
|
|
|
|
|
// output max value may change to be greater or less than the white
|
|
|
|
|
// parameter, depending on the available dynamic range.
|
|
|
|
|
return MAX(output_max_value, env->white);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_tonemap_agx_contrast(RID p_env, float p_agx_contrast) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL(env);
|
|
|
|
|
env->tonemap_agx_contrast = p_agx_contrast;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_tonemap_agx_contrast(RID p_env) const {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2025-05-29 12:19:00 -04:00
|
|
|
return env->tonemap_agx_contrast;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RendererEnvironmentStorage::TonemapParameters RendererEnvironmentStorage::environment_get_tonemap_parameters(RID p_env, bool p_limit_agx_white) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, TonemapParameters());
|
|
|
|
|
|
|
|
|
|
const float output_max_value = 1.0; // SDR always has an output_max_value of 1.0.
|
|
|
|
|
|
|
|
|
|
float white = environment_get_white(p_env, p_limit_agx_white);
|
|
|
|
|
TonemapParameters tonemap_parameters = TonemapParameters();
|
|
|
|
|
|
|
|
|
|
if (env->tone_mapper == RS::ENV_TONE_MAPPER_LINEAR) {
|
|
|
|
|
// Linear has no tonemapping parameters
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_REINHARD) {
|
|
|
|
|
tonemap_parameters.white_squared = white * white;
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_FILMIC) {
|
|
|
|
|
// These constants must match those in the shader code.
|
|
|
|
|
// exposure_bias: Input scale (color *= bias, white *= bias) to make the brightness consistent with other tonemappers
|
|
|
|
|
// also useful to scale the input to the range that the tonemapper is designed for (some require very high input values).
|
|
|
|
|
// Has no effect on the curve's general shape or visual properties.
|
|
|
|
|
const float exposure_bias = 2.0f;
|
|
|
|
|
const float A = 0.22f * exposure_bias * exposure_bias; // bias baked into constants for performance
|
|
|
|
|
const float B = 0.30f * exposure_bias;
|
|
|
|
|
const float C = 0.10f;
|
|
|
|
|
const float D = 0.20f;
|
|
|
|
|
const float E = 0.01f;
|
|
|
|
|
const float F = 0.30f;
|
|
|
|
|
|
|
|
|
|
tonemap_parameters.white_tonemapped = ((white * (A * white + C * B) + D * E) / (white * (A * white + B) + D * F)) - E / F;
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_ACES) {
|
|
|
|
|
// These constants must match those in the shader code.
|
|
|
|
|
const float exposure_bias = 1.8f;
|
|
|
|
|
const float A = 0.0245786f;
|
|
|
|
|
const float B = 0.000090537f;
|
|
|
|
|
const float C = 0.983729f;
|
|
|
|
|
const float D = 0.432951f;
|
|
|
|
|
const float E = 0.238081f;
|
|
|
|
|
|
|
|
|
|
white *= exposure_bias;
|
|
|
|
|
float white_tonemapped = (white * (white + A) - B) / (white * (C * white + D) + E);
|
|
|
|
|
tonemap_parameters.white_tonemapped = white_tonemapped;
|
|
|
|
|
} else if (env->tone_mapper == RS::ENV_TONE_MAPPER_AGX) {
|
|
|
|
|
// Calculate allenwp tonemapping curve parameters on the CPU to improve shader performance.
|
|
|
|
|
// Source and details: https://allenwp.com/blog/2025/05/29/allenwp-tonemapping-curve/
|
|
|
|
|
|
|
|
|
|
// These constants must match the those in the shader code.
|
|
|
|
|
// 18% "middle gray" is perceptually 50% of the brightness of reference white.
|
|
|
|
|
const float awp_crossover_point = 0.18;
|
|
|
|
|
// When output_max_value and/or awp_crossover_point are no longer constant, awp_shoulder_max can
|
|
|
|
|
// be calculated on the CPU and passed in as tonemap_parameters.tonemap_e.
|
|
|
|
|
const float awp_shoulder_max = output_max_value - awp_crossover_point;
|
|
|
|
|
|
|
|
|
|
float awp_high_clip = white;
|
|
|
|
|
|
|
|
|
|
// awp_toe_a is a solution generated by Mathematica that ensures intersection at awp_crossover_point.
|
|
|
|
|
float awp_toe_a = ((1.0 / awp_crossover_point) - 1.0) * pow(awp_crossover_point, env->tonemap_agx_contrast);
|
|
|
|
|
// Slope formula is simply the derivative of the toe function with an input of awp_crossover_point.
|
|
|
|
|
float awp_slope_denom = pow(awp_crossover_point, env->tonemap_agx_contrast) + awp_toe_a;
|
|
|
|
|
float awp_slope = (env->tonemap_agx_contrast * pow(awp_crossover_point, env->tonemap_agx_contrast - 1.0) * awp_toe_a) / (awp_slope_denom * awp_slope_denom);
|
|
|
|
|
|
|
|
|
|
float awp_w = awp_high_clip - awp_crossover_point;
|
|
|
|
|
awp_w = awp_w * awp_w;
|
|
|
|
|
awp_w = awp_w / awp_shoulder_max;
|
|
|
|
|
awp_w = awp_w * awp_slope;
|
|
|
|
|
|
|
|
|
|
tonemap_parameters.awp_contrast = env->tonemap_agx_contrast;
|
|
|
|
|
tonemap_parameters.awp_toe_a = awp_toe_a;
|
|
|
|
|
tonemap_parameters.awp_slope = awp_slope;
|
|
|
|
|
tonemap_parameters.awp_w = awp_w;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tonemap_parameters;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fog
|
|
|
|
|
|
2022-09-18 00:31:43 -05:00
|
|
|
void RendererEnvironmentStorage::environment_set_fog(RID p_env, bool p_enable, const Color &p_light_color, float p_light_energy, float p_sun_scatter, float p_density, float p_height, float p_height_density, float p_fog_aerial_perspective, float p_sky_affect, RS::EnvironmentFogMode p_mode) {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->fog_enabled = p_enable;
|
2022-09-18 00:31:43 -05:00
|
|
|
env->fog_mode = p_mode;
|
2022-07-27 16:14:23 +10:00
|
|
|
env->fog_light_color = p_light_color;
|
|
|
|
|
env->fog_light_energy = p_light_energy;
|
|
|
|
|
env->fog_sun_scatter = p_sun_scatter;
|
|
|
|
|
env->fog_density = p_density;
|
|
|
|
|
env->fog_height = p_height;
|
|
|
|
|
env->fog_height_density = p_height_density;
|
|
|
|
|
env->fog_aerial_perspective = p_fog_aerial_perspective;
|
2022-02-23 23:54:06 +01:00
|
|
|
env->fog_sky_affect = p_sky_affect;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_fog_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-18 00:31:43 -05:00
|
|
|
RS::EnvironmentFogMode RendererEnvironmentStorage::environment_get_fog_mode(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_FOG_MODE_EXPONENTIAL);
|
|
|
|
|
return env->fog_mode;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
Color RendererEnvironmentStorage::environment_get_fog_light_color(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Color(0.5, 0.6, 0.7));
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_light_color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_light_energy(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_light_energy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_sun_scatter(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_sun_scatter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_density(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.001);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_density;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_height(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_height_density(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_height_density;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_aerial_perspective(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->fog_aerial_perspective;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-23 23:54:06 +01:00
|
|
|
float RendererEnvironmentStorage::environment_get_fog_sky_affect(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-02-23 23:54:06 +01:00
|
|
|
return env->fog_sky_affect;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-18 00:31:43 -05:00
|
|
|
// Depth Fog
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_fog_depth(RID p_env, float p_curve, float p_begin, float p_end) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL(env);
|
|
|
|
|
env->fog_depth_curve = p_curve;
|
|
|
|
|
env->fog_depth_begin = p_begin;
|
|
|
|
|
env->fog_depth_end = p_end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_depth_curve(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
|
|
|
|
return env->fog_depth_curve;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_depth_begin(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
|
|
|
|
return env->fog_depth_begin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_fog_depth_end(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
|
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
|
|
|
|
return env->fog_depth_end;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
// Volumetric Fog
|
|
|
|
|
|
2022-02-23 23:54:06 +01:00
|
|
|
void RendererEnvironmentStorage::environment_set_volumetric_fog(RID p_env, bool p_enable, float p_density, const Color &p_albedo, const Color &p_emission, float p_emission_energy, float p_anisotropy, float p_length, float p_detail_spread, float p_gi_inject, bool p_temporal_reprojection, float p_temporal_reprojection_amount, float p_ambient_inject, float p_sky_affect) {
|
2022-07-27 16:14:23 +10:00
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2023-02-25 16:24:41 -08:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
|
if (OS::get_singleton()->get_current_rendering_method() != "forward_plus" && p_enable) {
|
2025-10-19 00:19:40 +02:00
|
|
|
WARN_PRINT_ONCE_ED("Volumetric fog is only available when using the Forward+ renderer.");
|
2023-02-25 16:24:41 -08:00
|
|
|
}
|
|
|
|
|
#endif
|
2022-07-27 16:14:23 +10:00
|
|
|
env->volumetric_fog_enabled = p_enable;
|
|
|
|
|
env->volumetric_fog_density = p_density;
|
|
|
|
|
env->volumetric_fog_scattering = p_albedo;
|
|
|
|
|
env->volumetric_fog_emission = p_emission;
|
|
|
|
|
env->volumetric_fog_emission_energy = p_emission_energy;
|
2022-12-17 20:14:28 -05:00
|
|
|
env->volumetric_fog_anisotropy = p_anisotropy;
|
2022-07-27 16:14:23 +10:00
|
|
|
env->volumetric_fog_length = p_length;
|
|
|
|
|
env->volumetric_fog_detail_spread = p_detail_spread;
|
|
|
|
|
env->volumetric_fog_gi_inject = p_gi_inject;
|
|
|
|
|
env->volumetric_fog_temporal_reprojection = p_temporal_reprojection;
|
|
|
|
|
env->volumetric_fog_temporal_reprojection_amount = p_temporal_reprojection_amount;
|
|
|
|
|
env->volumetric_fog_ambient_inject = p_ambient_inject;
|
2022-02-23 23:54:06 +01:00
|
|
|
env->volumetric_fog_sky_affect = p_sky_affect;
|
2022-07-27 16:14:23 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_volumetric_fog_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_density(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.01);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_density;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Color RendererEnvironmentStorage::environment_get_volumetric_fog_scattering(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Color(1, 1, 1));
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_scattering;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Color RendererEnvironmentStorage::environment_get_volumetric_fog_emission(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Color(0, 0, 0));
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_emission;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_emission_energy(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_emission_energy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_anisotropy(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.2);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_anisotropy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_length(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 64.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_detail_spread(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 2.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_detail_spread;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_gi_inject(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_gi_inject;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-23 23:54:06 +01:00
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_sky_affect(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-02-23 23:54:06 +01:00
|
|
|
return env->volumetric_fog_sky_affect;
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
bool RendererEnvironmentStorage::environment_get_volumetric_fog_temporal_reprojection(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, true);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_temporal_reprojection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_temporal_reprojection_amount(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.9);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_temporal_reprojection_amount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_volumetric_fog_ambient_inject(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->volumetric_fog_ambient_inject;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GLOW
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_glow(RID p_env, bool p_enable, Vector<float> p_levels, float p_intensity, float p_strength, float p_mix, float p_bloom_threshold, RS::EnvironmentGlowBlendMode p_blend_mode, float p_hdr_bleed_threshold, float p_hdr_bleed_scale, float p_hdr_luminance_cap, float p_glow_map_strength, RID p_glow_map) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2022-07-27 16:14:23 +10:00
|
|
|
ERR_FAIL_COND_MSG(p_levels.size() != 7, "Size of array of glow levels must be 7");
|
|
|
|
|
env->glow_enabled = p_enable;
|
|
|
|
|
env->glow_levels = p_levels;
|
|
|
|
|
env->glow_intensity = p_intensity;
|
|
|
|
|
env->glow_strength = p_strength;
|
|
|
|
|
env->glow_mix = p_mix;
|
|
|
|
|
env->glow_bloom = p_bloom_threshold;
|
|
|
|
|
env->glow_blend_mode = p_blend_mode;
|
|
|
|
|
env->glow_hdr_bleed_threshold = p_hdr_bleed_threshold;
|
|
|
|
|
env->glow_hdr_bleed_scale = p_hdr_bleed_scale;
|
|
|
|
|
env->glow_hdr_luminance_cap = p_hdr_luminance_cap;
|
|
|
|
|
env->glow_map_strength = p_glow_map_strength;
|
|
|
|
|
env->glow_map = p_glow_map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_glow_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Vector<float> RendererEnvironmentStorage::environment_get_glow_levels(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, Vector<float>());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_levels;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_intensity(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2025-09-17 17:09:46 -04:00
|
|
|
ERR_FAIL_NULL_V(env, 0.3);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_intensity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_strength(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_strength;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_bloom(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_bloom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_mix(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.01);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_mix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentGlowBlendMode RendererEnvironmentStorage::environment_get_glow_blend_mode(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2025-09-17 17:09:46 -04:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_GLOW_BLEND_MODE_SCREEN);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_blend_mode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_hdr_bleed_threshold(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2025-12-04 17:42:46 -05:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_hdr_bleed_threshold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_hdr_luminance_cap(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 12.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_hdr_luminance_cap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_hdr_bleed_scale(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 2.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_hdr_bleed_scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_glow_map_strength(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_map_strength;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RID RendererEnvironmentStorage::environment_get_glow_map(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RID());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->glow_map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SSR
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_ssr(RID p_env, bool p_enable, int p_max_steps, float p_fade_int, float p_fade_out, float p_depth_tolerance) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2023-02-25 16:24:41 -08:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
|
if (OS::get_singleton()->get_current_rendering_method() != "forward_plus" && p_enable) {
|
2025-10-19 00:19:40 +02:00
|
|
|
WARN_PRINT_ONCE_ED("Screen-space reflections (SSR) are only available when using the Forward+ renderer.");
|
2023-02-25 16:24:41 -08:00
|
|
|
}
|
|
|
|
|
#endif
|
2022-07-27 16:14:23 +10:00
|
|
|
env->ssr_enabled = p_enable;
|
|
|
|
|
env->ssr_max_steps = p_max_steps;
|
|
|
|
|
env->ssr_fade_in = p_fade_int;
|
|
|
|
|
env->ssr_fade_out = p_fade_out;
|
|
|
|
|
env->ssr_depth_tolerance = p_depth_tolerance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_ssr_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssr_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RendererEnvironmentStorage::environment_get_ssr_max_steps(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 64);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssr_max_steps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssr_fade_in(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.15);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssr_fade_in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssr_fade_out(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 2.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssr_fade_out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssr_depth_tolerance(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2025-09-16 15:17:49 +03:00
|
|
|
ERR_FAIL_NULL_V(env, 0.5);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssr_depth_tolerance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SSAO
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_ssao(RID p_env, bool p_enable, float p_radius, float p_intensity, float p_power, float p_detail, float p_horizon, float p_sharpness, float p_light_affect, float p_ao_channel_affect) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2023-02-25 16:24:41 -08:00
|
|
|
#ifdef DEBUG_ENABLED
|
2025-08-08 14:37:39 -07:00
|
|
|
if (OS::get_singleton()->get_current_rendering_method() == "mobile" && p_enable) {
|
2025-10-19 00:19:40 +02:00
|
|
|
WARN_PRINT_ONCE_ED("Screen-space ambient occlusion (SSAO) is only available when using the Forward+ or Compatibility renderers.");
|
2023-02-25 16:24:41 -08:00
|
|
|
}
|
|
|
|
|
#endif
|
2022-07-27 16:14:23 +10:00
|
|
|
env->ssao_enabled = p_enable;
|
|
|
|
|
env->ssao_radius = p_radius;
|
|
|
|
|
env->ssao_intensity = p_intensity;
|
|
|
|
|
env->ssao_power = p_power;
|
|
|
|
|
env->ssao_detail = p_detail;
|
|
|
|
|
env->ssao_horizon = p_horizon;
|
|
|
|
|
env->ssao_sharpness = p_sharpness;
|
|
|
|
|
env->ssao_direct_light_affect = p_light_affect;
|
|
|
|
|
env->ssao_ao_channel_affect = p_ao_channel_affect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_ssao_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_radius(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_radius;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_intensity(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 2.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_intensity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_power(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.5);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_power;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_detail(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.5);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_detail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_horizon(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.06);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_horizon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_sharpness(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.98);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_sharpness;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_direct_light_affect(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_direct_light_affect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssao_ao_channel_affect(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssao_ao_channel_affect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SSIL
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_ssil(RID p_env, bool p_enable, float p_radius, float p_intensity, float p_sharpness, float p_normal_rejection) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2023-02-25 16:24:41 -08:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
|
if (OS::get_singleton()->get_current_rendering_method() != "forward_plus" && p_enable) {
|
2025-10-19 00:19:40 +02:00
|
|
|
WARN_PRINT_ONCE_ED("Screen-space indirect lighting (SSIL) is only available when using the Forward+ renderer.");
|
2023-02-25 16:24:41 -08:00
|
|
|
}
|
|
|
|
|
#endif
|
2022-07-27 16:14:23 +10:00
|
|
|
env->ssil_enabled = p_enable;
|
|
|
|
|
env->ssil_radius = p_radius;
|
|
|
|
|
env->ssil_intensity = p_intensity;
|
|
|
|
|
env->ssil_sharpness = p_sharpness;
|
|
|
|
|
env->ssil_normal_rejection = p_normal_rejection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_ssil_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssil_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssil_radius(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 5.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssil_radius;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssil_intensity(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssil_intensity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssil_sharpness(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.98);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssil_sharpness;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_ssil_normal_rejection(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->ssil_normal_rejection;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SDFGI
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_sdfgi(RID p_env, bool p_enable, int p_cascades, float p_min_cell_size, RS::EnvironmentSDFGIYScale p_y_scale, bool p_use_occlusion, float p_bounce_feedback, bool p_read_sky, float p_energy, float p_normal_bias, float p_probe_bias) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2023-02-25 16:24:41 -08:00
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
|
if (OS::get_singleton()->get_current_rendering_method() != "forward_plus" && p_enable) {
|
2025-10-19 00:19:40 +02:00
|
|
|
WARN_PRINT_ONCE_ED("SDFGI is only available when using the Forward+ renderer.");
|
2023-02-25 16:24:41 -08:00
|
|
|
}
|
|
|
|
|
#endif
|
2022-07-27 16:14:23 +10:00
|
|
|
env->sdfgi_enabled = p_enable;
|
|
|
|
|
env->sdfgi_cascades = p_cascades;
|
|
|
|
|
env->sdfgi_min_cell_size = p_min_cell_size;
|
|
|
|
|
env->sdfgi_use_occlusion = p_use_occlusion;
|
|
|
|
|
env->sdfgi_bounce_feedback = p_bounce_feedback;
|
|
|
|
|
env->sdfgi_read_sky_light = p_read_sky;
|
|
|
|
|
env->sdfgi_energy = p_energy;
|
|
|
|
|
env->sdfgi_normal_bias = p_normal_bias;
|
|
|
|
|
env->sdfgi_probe_bias = p_probe_bias;
|
|
|
|
|
env->sdfgi_y_scale = p_y_scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_sdfgi_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int RendererEnvironmentStorage::environment_get_sdfgi_cascades(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 4);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_cascades;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sdfgi_min_cell_size(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.2);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_min_cell_size;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_sdfgi_use_occlusion(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_use_occlusion;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sdfgi_bounce_feedback(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 0.5);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_bounce_feedback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_sdfgi_read_sky_light(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, true);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_read_sky_light;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sdfgi_energy(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_energy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sdfgi_normal_bias(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.1);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_normal_bias;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_sdfgi_probe_bias(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.1);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_probe_bias;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RS::EnvironmentSDFGIYScale RendererEnvironmentStorage::environment_get_sdfgi_y_scale(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RS::ENV_SDFGI_Y_SCALE_75_PERCENT);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->sdfgi_y_scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Adjustments
|
|
|
|
|
|
|
|
|
|
void RendererEnvironmentStorage::environment_set_adjustment(RID p_env, bool p_enable, float p_brightness, float p_contrast, float p_saturation, bool p_use_1d_color_correction, RID p_color_correction) {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL(env);
|
2024-04-25 12:24:51 -07:00
|
|
|
|
2022-07-27 16:14:23 +10:00
|
|
|
env->adjustments_enabled = p_enable;
|
2025-10-23 11:02:57 -04:00
|
|
|
// Scale brightness via the nonlinear sRGB transfer function to provide a
|
|
|
|
|
// somewhat perceptually uniform brightness adjustment.
|
|
|
|
|
env->adjustments_brightness = p_brightness < 0.04045f ? p_brightness * (1.0f / 12.92f) : Math::pow(float((p_brightness + 0.055f) * (1.0f / (1.055f))), 2.4f);
|
2022-07-27 16:14:23 +10:00
|
|
|
env->adjustments_contrast = p_contrast;
|
|
|
|
|
env->adjustments_saturation = p_saturation;
|
|
|
|
|
env->use_1d_color_correction = p_use_1d_color_correction;
|
|
|
|
|
env->color_correction = p_color_correction;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_adjustments_enabled(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->adjustments_enabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_adjustments_brightness(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->adjustments_brightness;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_adjustments_contrast(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->adjustments_contrast;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float RendererEnvironmentStorage::environment_get_adjustments_saturation(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, 1.0);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->adjustments_saturation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RendererEnvironmentStorage::environment_get_use_1d_color_correction(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, false);
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->use_1d_color_correction;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RID RendererEnvironmentStorage::environment_get_color_correction(RID p_env) const {
|
|
|
|
|
Environment *env = environment_owner.get_or_null(p_env);
|
2023-09-09 17:04:18 +02:00
|
|
|
ERR_FAIL_NULL_V(env, RID());
|
2022-07-27 16:14:23 +10:00
|
|
|
return env->color_correction;
|
|
|
|
|
}
|