|
|
|
|
|
|
|
|
|
|
TEXTURE3D(_VBufferLighting); |
|
|
|
|
|
|
|
#ifdef DEBUG_DISPLAY |
|
|
|
#include "../../Debug/DebugDisplay.hlsl" |
|
|
|
#endif |
|
|
|
|
|
|
|
CBUFFER_START(AtmosphericScattering) |
|
|
|
int _AtmosphericScatteringType; |
|
|
|
// Common |
|
|
|
|
|
|
{ |
|
|
|
float3 fogColor = 0; |
|
|
|
float fogFactor = 0; |
|
|
|
|
|
|
|
#ifdef DEBUG_DISPLAY |
|
|
|
// Don't sample atmospheric scattering when lighting debug more are enabled so fog is not visible |
|
|
|
if (_DebugLightingMode == DEBUGLIGHTINGMODE_DIFFUSE_LIGHTING || _DebugLightingMode == DEBUGLIGHTINGMODE_SPECULAR_LIGHTING || _DebugLightingMode == DEBUGLIGHTINGMODE_LUX_METER) |
|
|
|
return float4(0, 0, 0, 0); |
|
|
|
#endif |
|
|
|
|
|
|
|
switch (_AtmosphericScatteringType) |
|
|
|
{ |
|
|
|