mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Merge pull request #23945 from DavidSichma/gles2artifact
Fixed black artifacts on SpatialMaterial [GLES2]
This commit is contained in:
commit
a741f83811
@ -1119,7 +1119,7 @@ LIGHT_SHADER_CODE
|
||||
float NdotL = dot(N, L);
|
||||
float cNdotL = max(NdotL, 0.0); // clamped NdotL
|
||||
float NdotV = dot(N, V);
|
||||
float cNdotV = max(NdotV, 0.0);
|
||||
float cNdotV = max(abs(NdotV), 1e-6);
|
||||
|
||||
#if defined(DIFFUSE_BURLEY) || defined(SPECULAR_BLINN) || defined(SPECULAR_SCHLICK_GGX) || defined(LIGHT_USE_CLEARCOAT)
|
||||
vec3 H = normalize(V + L);
|
||||
|
Loading…
Reference in New Issue
Block a user