X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=shaders%2Fscene_water.fs;fp=shaders%2Fscene_water.fs;h=329374f9dfb80cba7774c186847b909bd1104b6a;hb=f3a2490079baf440238b78e54f4476649eddbda2;hp=645569900d14dd1ab6fb6d016584730f196c470f;hpb=192990d6d24e53749ca046fef808a63cf162ab8a;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/shaders/scene_water.fs b/shaders/scene_water.fs index 6455699..329374f 100644 --- a/shaders/scene_water.fs +++ b/shaders/scene_water.fs @@ -33,7 +33,7 @@ vec4 water_surf( vec3 halfview, vec3 vnorm, float depthvalue, float spec = pow(max(dot(halfview,specdir),0.0),20.0)*0.3; // Depth - float depthblend = pow( beneath.a,0.8 ); + float depthblend = pow( beneath.r, 0.8 ); // Composite vec3 vsurface = mix(surface_tint, above.rgb, ffresnel ); @@ -50,7 +50,7 @@ void main() vec2 ssuv = gl_FragCoord.xy*uInvRes; // Surface colour composite - float depthvalue = clamp( -world_depth_sample( aCo )*(1.0/25.0), 0.0, 1.0 ); + float depthvalue = clamp( -world_water_depth( aCo )*(1.0/25.0), 0.0, 1.0 ); vec2 world_coord = aCo.xz * 0.008; vec4 time_offsets = vec4( uTime ) * vec4( 0.008, 0.006, 0.003, 0.03 );