Skip to content
Snippets Groups Projects
Commit b80b45e6 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Make the water sparkle again

parent bd18a3dd
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,6 @@ void main() ...@@ -77,6 +77,6 @@ void main()
vec4 fb = texture2D(screenTex, distort); vec4 fb = texture2D(screenTex, distort);
frag_data[0] = vec4(fb.rgb, 1.0); // diffuse frag_data[0] = vec4(fb.rgb, 1.0); // diffuse
frag_data[1] = vec4(0.5,0.5,0.5, 0.95); // speccolor*spec, spec frag_data[1] = vec4(specular * 0.5, 0.95); // speccolor*spec, spec
frag_data[2] = vec4(encode_normal(wavef), 0.0, 0.0); // normalxyz, env intens, atmo kill frag_data[2] = vec4(encode_normal(wavef), 0.0, 0.0); // normalxyz, env intens, atmo kill
} }
...@@ -158,10 +158,7 @@ void main() ...@@ -158,10 +158,7 @@ void main()
//mix with reflection //mix with reflection
// Note we actually want to use just df1, but multiplying by 0.999999 gets around an nvidia compiler bug // Note we actually want to use just df1, but multiplying by 0.999999 gets around an nvidia compiler bug
color.rgb = mix(fb.rgb, refcol.rgb, df1 * 0.99999f); color.rgb = mix(fb.rgb, refcol.rgb, df1);
vec4 pos = vary_position;
color.rgb += spec * specular; color.rgb += spec * specular;
color.rgb = atmosTransport(color.rgb); color.rgb = atmosTransport(color.rgb);
...@@ -171,14 +168,8 @@ void main() ...@@ -171,14 +168,8 @@ void main()
vec3 screenspacewavef = normalize((norm_mat*vec4(wavef, 1.0)).xyz); vec3 screenspacewavef = normalize((norm_mat*vec4(wavef, 1.0)).xyz);
//frag_data[0] = color; frag_data[0] = color;
// TODO: The non-obvious assignment below is copied from the pre-EEP WL shader code
// Unfortunately, fixing it causes a mismatch for EEP, and so it remains... for now
// SL-12975 (unfix pre-EEP broken alpha)
frag_data[0] = vec4(color.rgb, color); // Effectively, color.rgbr
frag_data[1] = vec4(0); // speccolor, spec frag_data[1] = vec4(specular * 0.5, 0.35); // speccolor, spec
frag_data[2] = vec4(encode_normal(screenspacewavef.xyz), 0.05, 0);// normalxy, 0, 0 frag_data[2] = vec4(encode_normal(screenspacewavef.xyz), 0.05, 0);// normalxy, 0, 0
} }
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