226 lines
8.8 KiB
HLSL
226 lines
8.8 KiB
HLSL
#include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/Raytracing/Shaders/RayTracingLightCluster.hlsl"
|
|
|
|
#define USE_LIGHT_CLUSTER
|
|
|
|
void LightLoop( float3 V, PositionInputs posInput, PreLightData preLightData, BSDFData bsdfData, BuiltinData builtinData,
|
|
float reflectionHierarchyWeight, float refractionHierarchyWeight, float3 reflection, float3 transmission,
|
|
out LightLoopOutput lightLoopOutput)
|
|
{
|
|
// Init LightLoop output structure
|
|
ZERO_INITIALIZE(LightLoopOutput, lightLoopOutput);
|
|
|
|
LightLoopContext context;
|
|
context.contactShadow = 1.0;
|
|
context.shadowContext = InitShadowContext();
|
|
context.shadowValue = 1.0;
|
|
context.sampleReflection = 0;
|
|
|
|
// Initialize the contactShadow and contactShadowFade fields
|
|
InvalidateConctactShadow(posInput, context);
|
|
|
|
// Evaluate sun shadows.
|
|
if (_DirectionalShadowIndex >= 0)
|
|
{
|
|
DirectionalLightData light = _DirectionalLightDatas[_DirectionalShadowIndex];
|
|
|
|
// TODO: this will cause us to load from the normal buffer first. Does this cause a performance problem?
|
|
float3 L = -light.forward;
|
|
|
|
// Is it worth sampling the shadow map?
|
|
if ((light.lightDimmer > 0) && (light.shadowDimmer > 0) && // Note: Volumetric can have different dimmer, thus why we test it here
|
|
IsNonZeroBSDF(V, L, preLightData, bsdfData) &&
|
|
!ShouldEvaluateThickObjectTransmission(V, L, preLightData, bsdfData, light.shadowIndex))
|
|
{
|
|
int shadowSplitIndex;
|
|
context.shadowValue = EvalShadow_CascadedDepth_Dither_SplitIndex(context.shadowContext, _ShadowmapCascadeAtlas, s_linear_clamp_compare_sampler, posInput.positionSS, posInput.positionWS, GetNormalForShadowBias(bsdfData), light.shadowIndex, L, shadowSplitIndex);
|
|
if (shadowSplitIndex < 0.0)
|
|
{
|
|
context.shadowValue = _DirectionalShadowFallbackIntensity;
|
|
}
|
|
}
|
|
}
|
|
|
|
AggregateLighting aggregateLighting;
|
|
ZERO_INITIALIZE(AggregateLighting, aggregateLighting); // LightLoop is in charge of initializing the structure
|
|
|
|
// Indices of the subranges to process
|
|
uint lightStart = 0, lightEnd = 0;
|
|
|
|
// The light cluster is in actual world space coordinates,
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
// Get the actual world space position
|
|
float3 actualWSPos = posInput.positionWS;
|
|
#endif
|
|
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
// Get the punctual light count
|
|
uint cellIndex;
|
|
GetLightCountAndStartCluster(actualWSPos, LIGHTCATEGORY_PUNCTUAL, lightStart, lightEnd, cellIndex);
|
|
#else
|
|
lightStart = 0;
|
|
lightEnd = _PunctualLightCountRT;
|
|
#endif
|
|
|
|
uint i = 0;
|
|
for (i = lightStart; i < lightEnd; i++)
|
|
{
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
LightData lightData = FetchClusterLightIndex(cellIndex, i);
|
|
#else
|
|
LightData lightData = _LightDatasRT[i];
|
|
#endif
|
|
if (IsMatchingLightLayer(lightData.lightLayers, builtinData.renderingLayers))
|
|
{
|
|
DirectLighting lighting = EvaluateBSDF_Punctual(context, V, posInput, preLightData, lightData, bsdfData, builtinData);
|
|
AccumulateDirectLighting(lighting, aggregateLighting);
|
|
}
|
|
}
|
|
|
|
// Add the traced reflection
|
|
if (reflectionHierarchyWeight == 1.0)
|
|
{
|
|
IndirectLighting lighting = EvaluateBSDF_RaytracedReflection(context, bsdfData, preLightData, reflection);
|
|
AccumulateIndirectLighting(lighting, aggregateLighting);
|
|
}
|
|
|
|
#if HAS_REFRACTION
|
|
// Add the traced transmission
|
|
if (refractionHierarchyWeight == 1.0)
|
|
{
|
|
IndirectLighting indirect;
|
|
ZERO_INITIALIZE(IndirectLighting, indirect);
|
|
IndirectLighting lighting = EvaluateBSDF_RaytracedRefraction(context, preLightData, transmission);
|
|
AccumulateIndirectLighting(lighting, aggregateLighting);
|
|
}
|
|
#endif
|
|
|
|
// Define macro for a better understanding of the loop
|
|
// TODO: this code is now much harder to understand...
|
|
#define EVALUATE_BSDF_ENV_SKY(envLightData, TYPE, type) \
|
|
IndirectLighting lighting = EvaluateBSDF_Env(context, V, posInput, preLightData, envLightData, bsdfData, envLightData.influenceShapeType, MERGE_NAME(GPUIMAGEBASEDLIGHTINGTYPE_, TYPE), MERGE_NAME(type, HierarchyWeight)); \
|
|
AccumulateIndirectLighting(lighting, aggregateLighting);
|
|
|
|
// Environment cubemap test lightlayers, sky don't test it
|
|
#define EVALUATE_BSDF_ENV(envLightData, TYPE, type) if (IsMatchingLightLayer(envLightData.lightLayers, builtinData.renderingLayers)) { EVALUATE_BSDF_ENV_SKY(envLightData, TYPE, type) }
|
|
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
// Get the punctual light count
|
|
GetLightCountAndStartCluster(actualWSPos, LIGHTCATEGORY_ENV, lightStart, lightEnd, cellIndex);
|
|
#else
|
|
lightStart = 0;
|
|
lightEnd = _EnvLightCountRT;
|
|
#endif
|
|
|
|
context.sampleReflection = SINGLE_PASS_CONTEXT_SAMPLE_REFLECTION_PROBES;
|
|
|
|
// Scalarized loop, same rationale of the punctual light version
|
|
uint envLightIdx = lightStart;
|
|
while (envLightIdx < lightEnd)
|
|
{
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
EnvLightData envLightData = FetchClusterEnvLightIndex(cellIndex, envLightIdx);
|
|
#else
|
|
EnvLightData envLightData = _EnvLightDatasRT[envLightIdx];
|
|
#endif
|
|
|
|
if (reflectionHierarchyWeight < 1.0)
|
|
{
|
|
EVALUATE_BSDF_ENV(envLightData, REFLECTION, reflection);
|
|
}
|
|
if (refractionHierarchyWeight < 1.0)
|
|
{
|
|
EVALUATE_BSDF_ENV(envLightData, REFRACTION, refraction);
|
|
}
|
|
envLightIdx++;
|
|
}
|
|
|
|
// Only apply the sky IBL if the sky texture is available
|
|
if (_EnvLightSkyEnabled)
|
|
{
|
|
// The sky is a single cubemap texture separate from the reflection probe texture array (different resolution and compression)
|
|
context.sampleReflection = SINGLE_PASS_CONTEXT_SAMPLE_SKY;
|
|
|
|
// The sky data are generated on the fly so the compiler can optimize the code
|
|
EnvLightData envLightSky = InitSkyEnvLightData(0);
|
|
|
|
// Only apply the sky if we haven't yet accumulated enough IBL lighting.
|
|
if (reflectionHierarchyWeight < 1.0)
|
|
{
|
|
EVALUATE_BSDF_ENV_SKY(envLightSky, REFLECTION, reflection);
|
|
}
|
|
|
|
if ((refractionHierarchyWeight < 1.0))
|
|
{
|
|
EVALUATE_BSDF_ENV_SKY(envLightSky, REFRACTION, refraction);
|
|
}
|
|
}
|
|
#undef EVALUATE_BSDF_ENV
|
|
#undef EVALUATE_BSDF_ENV_SKY
|
|
|
|
// We loop over all the directional lights given that there is no culling for them
|
|
for (i = 0; i < _DirectionalLightCount; ++i)
|
|
{
|
|
if (IsMatchingLightLayer(_DirectionalLightDatas[i].lightLayers, builtinData.renderingLayers))
|
|
{
|
|
DirectLighting lighting = EvaluateBSDF_Directional(context, V, posInput, preLightData, _DirectionalLightDatas[i], bsdfData, builtinData);
|
|
AccumulateDirectLighting(lighting, aggregateLighting);
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
// Let's loop through all the
|
|
GetLightCountAndStartCluster(actualWSPos, LIGHTCATEGORY_AREA, lightStart, lightEnd, cellIndex);
|
|
#else
|
|
lightStart = _PunctualLightCountRT;
|
|
lightEnd = _PunctualLightCountRT + _AreaLightCountRT;
|
|
#endif
|
|
|
|
if (lightEnd != lightStart)
|
|
{
|
|
i = lightStart;
|
|
uint last = lightEnd;
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
LightData lightData = FetchClusterLightIndex(cellIndex, i);
|
|
#else
|
|
LightData lightData = _LightDatasRT[i];
|
|
#endif
|
|
|
|
while (i < last && lightData.lightType == GPULIGHTTYPE_TUBE)
|
|
{
|
|
lightData.lightType = GPULIGHTTYPE_TUBE; // Enforce constant propagation
|
|
|
|
if (IsMatchingLightLayer(lightData.lightLayers, builtinData.renderingLayers))
|
|
{
|
|
DirectLighting lighting = EvaluateBSDF_Area(context, V, posInput, preLightData, lightData, bsdfData, builtinData);
|
|
AccumulateDirectLighting(lighting, aggregateLighting);
|
|
}
|
|
i++;
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
lightData = FetchClusterLightIndex(cellIndex, i);
|
|
#else
|
|
lightData = _LightDatasRT[i];
|
|
#endif
|
|
}
|
|
|
|
while (i < last ) // GPULIGHTTYPE_RECTANGLE
|
|
{
|
|
lightData.lightType = GPULIGHTTYPE_RECTANGLE; // Enforce constant propagation
|
|
|
|
if (IsMatchingLightLayer(lightData.lightLayers, builtinData.renderingLayers))
|
|
{
|
|
DirectLighting lighting = EvaluateBSDF_Area(context, V, posInput, preLightData, lightData, bsdfData, builtinData);
|
|
AccumulateDirectLighting(lighting, aggregateLighting);
|
|
}
|
|
i++;
|
|
#ifdef USE_LIGHT_CLUSTER
|
|
lightData = FetchClusterLightIndex(cellIndex, i);
|
|
#else
|
|
lightData = _LightDatasRT[i];
|
|
#endif
|
|
}
|
|
}
|
|
|
|
PostEvaluateBSDF(context, V, posInput, preLightData, bsdfData, builtinData, aggregateLighting, lightLoopOutput);
|
|
}
|