1
1

Fix T99018: EEVEE: Regression: Specular BSDF apply specular color input twice

This was an oversight. I checked that no other node had the same regression.
This commit is contained in:
2022-06-20 16:26:26 +02:00
parent d2e4bd7995
commit 3bb8b64c47

View File

@@ -41,7 +41,7 @@ void node_eevee_specular(vec4 diffuse,
vec2 split_sum = brdf_lut(NV, roughness);
vec3 brdf = F_brdf_single_scatter(specular.rgb, vec3(1.0), split_sum);
reflection_data.color = specular.rgb * brdf;
reflection_data.color = brdf;
reflection_data.N = N;
reflection_data.roughness = roughness;
}