mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2025-04-05 09:00:51 +00:00
tweaked GRP fog curve to match the original better
This commit is contained in:
parent
779b6dad92
commit
a02057425a
3 changed files with 14 additions and 2 deletions
|
@ -64,4 +64,14 @@ cbuffer RootConstants
|
|||
|
||||
Texture2D depthTexture : register(t0);
|
||||
|
||||
float FogOpacityFromDistance01(float x)
|
||||
{
|
||||
if(x >= 1.0)
|
||||
{
|
||||
return 1.0;
|
||||
}
|
||||
|
||||
return 1.0 - exp2(-10.0 * x);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -33,7 +33,8 @@ float4 ps(VOut input) : SV_Target
|
|||
float depthBuff = LinearDepth(zwDepth, input.proj2232.x, input.proj2232.y);
|
||||
float depthFrag = input.depthVS;
|
||||
float depth = min(depthBuff, depthFrag);
|
||||
float fogOpacity = saturate(depth / colorDepth.w);
|
||||
float distance01 = saturate(depth / colorDepth.w);
|
||||
float fogOpacity = FogOpacityFromDistance01(distance01);
|
||||
|
||||
return float4(colorDepth.rgb, fogOpacity);
|
||||
|
||||
|
|
|
@ -37,7 +37,8 @@ float4 ps(VOut input) : SV_Target
|
|||
discard;
|
||||
}
|
||||
|
||||
float fogOpacity = saturate((depthBuff - depthFrag) / colorDepth.w);
|
||||
float distance01 = saturate((depthBuff - depthFrag) / colorDepth.w);
|
||||
float fogOpacity = FogOpacityFromDistance01(distance01);
|
||||
|
||||
return float4(colorDepth.rgb, fogOpacity);
|
||||
|
||||
|
|
Loading…
Reference in a new issue