Skip to content
Snippets Groups Projects
Commit c1b6d91c authored by Graham Linden's avatar Graham Linden
Browse files

SL-11540

Make class1/environment and class1/deferred water match.
parent 1d86dcd8
No related branches found
No related tags found
No related merge requests found
...@@ -155,18 +155,16 @@ void main() ...@@ -155,18 +155,16 @@ void main()
vec2 distort2 = distort+wavef.xy*refScale/max(dmod*df1, 1.0); vec2 distort2 = distort+wavef.xy*refScale/max(dmod*df1, 1.0);
vec4 fb = texture2D(screenTex, distort2); vec4 fb = texture2D(screenTex, distort2);
fb.rgb = srgb_to_linear(fb.rgb);
//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.49999 + 0.5); color.rgb = mix(fb.rgb, refcol.rgb, df1 * 0.99999f);
vec4 pos = vary_position; vec4 pos = vary_position;
color.rgb += spec * specular; color.rgb += spec * specular;
//color.rgb = atmosTransport(color.rgb); //color.rgb = atmosTransport(color.rgb);
color.rgb *= 2.0f;
color.rgb = scaleSoftClip(color.rgb); color.rgb = scaleSoftClip(color.rgb);
color.a = spec * sunAngle2; color.a = spec * sunAngle2;
...@@ -175,5 +173,5 @@ void main() ...@@ -175,5 +173,5 @@ void main()
frag_data[0] = vec4(color.rgb, color); // diffuse frag_data[0] = vec4(color.rgb, color); // diffuse
frag_data[1] = vec4(0); // speccolor, spec frag_data[1] = vec4(0); // speccolor, spec
frag_data[2] = vec4(encode_normal(screenspacewavef.xyz*0.5+0.5), 0.05, 0);// normalxy, 0, 0 frag_data[2] = vec4(encode_normal(screenspacewavef.xyz*0.5+0.5), 0.0, 0);// normalxy, 0, 0
} }
...@@ -121,6 +121,7 @@ void main() ...@@ -121,6 +121,7 @@ void main()
vec4 refcol = refcol1 + refcol2 + refcol3; vec4 refcol = refcol1 + refcol2 + refcol3;
float df1 = df.x + df.y + df.z; float df1 = df.x + df.y + df.z;
df1 *= 0.666666f;
refcol *= df1; refcol *= df1;
vec3 wavef = (wave1 + wave2 * 0.4 + wave3 * 0.6) * 0.5; vec3 wavef = (wave1 + wave2 * 0.4 + wave3 * 0.6) * 0.5;
...@@ -155,6 +156,9 @@ void main() ...@@ -155,6 +156,9 @@ void main()
color.a = spec * sunAngle2; color.a = spec * sunAngle2;
//color.rgb = atmosTransport(color.rgb);
color.rgb = scaleSoftClip(color.rgb);
#if defined(WATER_EDGE) #if defined(WATER_EDGE)
gl_FragDepth = 0.9999847f; gl_FragDepth = 0.9999847f;
#endif #endif
......
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