Skip to content
Snippets Groups Projects
Unverified Commit 31f8fb79 authored by cosmic-linden's avatar cosmic-linden Committed by GitHub
Browse files

SL-19543: Fix blinn phong prims with alpha blending not blending (#158)

parent 5bf60f5d
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,6 @@ vec4 applyWaterFogView(vec3 pos, vec4 color) ...@@ -69,7 +69,6 @@ vec4 applyWaterFogView(vec3 pos, vec4 color)
float D = pow(0.98, l*kd); float D = pow(0.98, l*kd);
color.rgb = color.rgb * D + kc.rgb * L; color.rgb = color.rgb * D + kc.rgb * L;
color.a = kc.a + color.a;
return color; return color;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment