diff options
| author | yum <yum.food.vr@gmail.com> | 2025-06-03 23:49:25 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2025-06-03 23:49:25 -0700 |
| commit | 102f53a2402b204d1dc679078aaf8ba5765d97a7 (patch) | |
| tree | cf977a756dbb460a431ba669761eaf06ccc44c5b /globals.cginc | |
| parent | e57cfb120534ede4005f538ddd158b9dc5061d3c (diff) | |
Add spatiotemporal dithering to fog
Diffstat (limited to 'globals.cginc')
| -rw-r--r-- | globals.cginc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/globals.cginc b/globals.cginc index 22d707b..341e08b 100644 --- a/globals.cginc +++ b/globals.cginc @@ -536,12 +536,17 @@ float _SSAO_Bias; #endif // _SSAO
#if defined(_RAYMARCHED_FOG)
+float3 _Raymarched_Fog_Color;
float _Raymarched_Fog_Steps;
float _Raymarched_Fog_Density;
texture2D _Raymarched_Fog_Dithering_Noise;
+float4 _Raymarched_Fog_Dithering_Noise_TexelSize;
texture3D _Raymarched_Fog_Density_Noise;
float4 _Raymarched_Fog_Density_Noise_Scale;
float _Raymarched_Fog_Y_Cutoff;
+float _Raymarched_Fog_Height_Density_Min;
+float _Raymarched_Fog_Height_Density_Max;
+float _Raymarched_Fog_Height_Density_Power;
#endif // _RAYMARCHED_FOG
#endif // __GLOBALS_INC
|
