Newer
Older
casic-smartcity-well-front / static / Cesium / Shaders / Builtin / Functions / acesTonemapping.glsl
[wangxitong] on 8 Jul 2021 366 bytes mars3d总览
// See:
//    https://knarkowicz.wordpress.com/2016/01/06/aces-filmic-tone-mapping-curve/

vec3 czm_acesTonemapping(vec3 color) {
    float g = 0.985;
    float a = 0.065;
    float b = 0.0001;
    float c = 0.433;
    float d = 0.238;

    color = (color * (color + a) - b) / (color * (g * color + c) + d);

    color = clamp(color, 0.0, 1.0);

    return color;
}