Skip to content
Snippets Groups Projects
Commit fefdd5ae authored by David Parks's avatar David Parks
Browse files

SL-20730 Scrub nans from haze alpha

parent 60196f6a
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,6 @@ void main()
alpha = 1.0;
}
frag_color.rgb = max(color.rgb, vec3(0)); //output linear since local lights will be added to this shader's results
frag_color.a = alpha;
frag_color = max(vec4(color.rgb, alpha), vec4(0)); //output linear since local lights will be added to this shader's results
}
......@@ -60,6 +60,6 @@ void main()
vec4 fogged = getWaterFogView(pos.xyz);
frag_color.rgb = max(fogged.rgb, vec3(0)); //output linear since local lights will be added to this shader's results
frag_color.a = fogged.a;
frag_color = max(fogged, vec4(0)); //output linear since local lights will be added to this shader's results
}
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