forked from teamnwah/openmw-tes3coop
fix areas with only water (no objects below)
This commit is contained in:
parent
c49d5dd40b
commit
bcee5d5943
1 changed files with 3 additions and 1 deletions
|
@ -59,8 +59,10 @@ void main_fp
|
|||
oColor.a = 1;
|
||||
|
||||
// Sample screen-space depth map and subtract pixel depth to get the real water depth
|
||||
float depth1 = tex2D(depthMap, screenCoords).r * far - iDepth;
|
||||
float depthTex = tex2D(depthMap, screenCoords).r;
|
||||
float depth1 = depthTex * far - iDepth;
|
||||
depth1 = saturate(depth1 / 500.f);
|
||||
depth1 = (depthTex == 0 ? 1 : depth1);
|
||||
|
||||
// Simple wave effect. to be replaced by something better
|
||||
float2 uv1 = iUv + time * float2(0.5, 0);
|
||||
|
|
Loading…
Reference in a new issue