File size: 46,460 Bytes
d883ffe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 | using System;
using System.Collections.Generic;
using UnityEngine.Experimental.Rendering;
using UnityEngine.Rendering.RenderGraphModule;
namespace UnityEngine.Rendering.Universal
{
/// <summary>
/// Struct container for shadow slice data.
/// </summary>
public struct ShadowSliceData
{
/// <summary>
/// The view matrix.
/// </summary>
public Matrix4x4 viewMatrix;
/// <summary>
/// The projection matrix.
/// </summary>
public Matrix4x4 projectionMatrix;
/// <summary>
/// The shadow transform matrix.
/// </summary>
public Matrix4x4 shadowTransform;
/// <summary>
/// The X offset to the shadow map.
/// </summary>
public int offsetX;
/// <summary>
/// The Y offset to the shadow map.
/// </summary>
public int offsetY;
/// <summary>
/// The maximum tile resolution in an Atlas.
/// </summary>
public int resolution;
/// <summary>
/// The shadow split data containing culling information.
/// </summary>
public ShadowSplitData splitData;
// META CHANGE START: Added depthScale field for VR shadow projection adjustments
/// <summary>
/// The depth scale for this shadow slice (computed from projection matrix).
/// </summary>
public float depthScale;
// META CHANGE END
// META CHANGE START: Added shadowDistance field for VR per-cascade shadow distance adjustments
/// <summary>
/// The shadow distance for this cascade (may be adjusted by ShadowAdjustmentDelegate).
/// </summary>
public float shadowDistance;
// META CHANGE END
/// <summary>
/// Clears and resets the data.
/// </summary>
public void Clear()
{
viewMatrix = Matrix4x4.identity;
projectionMatrix = Matrix4x4.identity;
shadowTransform = Matrix4x4.identity;
offsetX = offsetY = 0;
resolution = 1024;
// META CHANGE START: Initialize VR shadow fields
depthScale = 0.0f;
shadowDistance = 0.0f;
// META CHANGE END
}
}
/// <summary>
/// Various utility functions used for shadows.
/// </summary>
public static class ShadowUtils
{
internal static readonly bool m_ForceShadowPointSampling;
// META CHANGE START: Entrypoint for adjusting the shadow projection and distance
// Delegate signature uses UniversalCameraData and UniversalShadowData (17.0.4 API)
public delegate void ShadowAdjustmentDelegate(ref UniversalCameraData cameraData, ref ShadowSliceData sliceData, ref float shadowDistance);
public static ShadowAdjustmentDelegate ShadowAdjustment;
// Camera data to be used by the shadow adjustment delegate (set before calling CullShadowCasters)
internal static UniversalCameraData CurrentCameraData;
// META CHANGE END
static ShadowUtils()
{
m_ForceShadowPointSampling = SystemInfo.graphicsDeviceType == GraphicsDeviceType.Metal &&
GraphicsSettings.HasShaderDefine(Graphics.activeTier, BuiltinShaderDefine.UNITY_METAL_SHADOWS_USE_POINT_FILTERING);
}
/// <summary>
/// Extracts the directional light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="cascadeIndex">The cascade index.</param>
/// <param name="shadowmapWidth">The shadow map width.</param>
/// <param name="shadowmapHeight">The shadow map height.</param>
/// <param name="shadowResolution">The shadow map resolution.</param>
/// <param name="shadowNearPlane">Near plane value to use for shadow frustums.</param>
/// <param name="cascadeSplitDistance">The culling sphere for the cascade.</param>
/// <param name="shadowSliceData">The struct container for shadow slice data.</param>
/// <param name="viewMatrix">The view matrix to be set.</param>
/// <param name="projMatrix">The projection matrix to be set.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractDirectionalLightMatrix(ref CullingResults cullResults, ref ShadowData shadowData, int shadowLightIndex, int cascadeIndex, int shadowmapWidth, int shadowmapHeight, int shadowResolution, float shadowNearPlane, out Vector4 cascadeSplitDistance, out ShadowSliceData shadowSliceData, out Matrix4x4 viewMatrix, out Matrix4x4 projMatrix)
{
bool result = ExtractDirectionalLightMatrix(ref cullResults, ref shadowData, shadowLightIndex, cascadeIndex, shadowmapWidth, shadowmapHeight, shadowResolution, shadowNearPlane, out cascadeSplitDistance, out shadowSliceData);
viewMatrix = shadowSliceData.viewMatrix;
projMatrix = shadowSliceData.projectionMatrix;
return result;
}
/// <summary>
/// Extracts the directional light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="cascadeIndex">The cascade index.</param>
/// <param name="shadowmapWidth">The shadow map width.</param>
/// <param name="shadowmapHeight">The shadow map height.</param>
/// <param name="shadowResolution">The shadow map resolution.</param>
/// <param name="shadowNearPlane">Near plane value to use for shadow frustums.</param>
/// <param name="cascadeSplitDistance">The culling sphere for the cascade.</param>
/// <param name="shadowSliceData">The struct container for shadow slice data.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractDirectionalLightMatrix(ref CullingResults cullResults, ref ShadowData shadowData, int shadowLightIndex, int cascadeIndex, int shadowmapWidth, int shadowmapHeight, int shadowResolution, float shadowNearPlane, out Vector4 cascadeSplitDistance, out ShadowSliceData shadowSliceData)
{
return ExtractDirectionalLightMatrix(ref cullResults, shadowData.universalShadowData,
shadowLightIndex, cascadeIndex, shadowmapWidth, shadowmapHeight, shadowResolution,
shadowNearPlane, out cascadeSplitDistance, out shadowSliceData);
}
/// <summary>
/// Extracts the directional light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="cascadeIndex">The cascade index.</param>
/// <param name="shadowmapWidth">The shadow map width.</param>
/// <param name="shadowmapHeight">The shadow map height.</param>
/// <param name="shadowResolution">The shadow map resolution.</param>
/// <param name="shadowNearPlane">Near plane value to use for shadow frustums.</param>
/// <param name="cascadeSplitDistance">The culling sphere for the cascade.</param>
/// <param name="shadowSliceData">The struct container for shadow slice data.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractDirectionalLightMatrix(ref CullingResults cullResults, UniversalShadowData shadowData, int shadowLightIndex, int cascadeIndex, int shadowmapWidth, int shadowmapHeight, int shadowResolution, float shadowNearPlane, out Vector4 cascadeSplitDistance, out ShadowSliceData shadowSliceData)
{
bool success = cullResults.ComputeDirectionalShadowMatricesAndCullingPrimitives(shadowLightIndex,
cascadeIndex, shadowData.mainLightShadowCascadesCount, shadowData.mainLightShadowCascadesSplit, shadowResolution, shadowNearPlane, out shadowSliceData.viewMatrix, out shadowSliceData.projectionMatrix,
out shadowSliceData.splitData);
cascadeSplitDistance = shadowSliceData.splitData.cullingSphere;
shadowSliceData.offsetX = (cascadeIndex % 2) * shadowResolution;
shadowSliceData.offsetY = (cascadeIndex / 2) * shadowResolution;
shadowSliceData.resolution = shadowResolution;
// META CHANGE START: Allow external code to adjust the shadow projection and distance
// This enables VR-specific shadow adjustments per cascade
float shadowDistance = CurrentCameraData != null ? CurrentCameraData.maxShadowDistance : float.MaxValue;
if (ShadowAdjustment != null && CurrentCameraData != null)
{
shadowSliceData.shadowTransform = default;
shadowSliceData.depthScale = default;
shadowSliceData.shadowDistance = default;
ShadowAdjustment(ref CurrentCameraData, ref shadowSliceData, ref shadowDistance);
}
shadowSliceData.shadowDistance = shadowDistance;
// META CHANGE END
shadowSliceData.shadowTransform = GetShadowTransform(shadowSliceData.projectionMatrix, shadowSliceData.viewMatrix);
// META CHANGE START: Compute depth scale from projection matrix for VR shadow adjustments
shadowSliceData.depthScale = Mathf.Abs(2.0f / shadowSliceData.projectionMatrix[2, 2]);
// META CHANGE END
// It is the culling sphere radius multiplier for shadow cascade blending
// If this is less than 1.0, then it will begin to cull castors across cascades
shadowSliceData.splitData.shadowCascadeBlendCullingFactor = 1.0f;
// If we have shadow cascades baked into the atlas we bake cascade transform
// in each shadow matrix to save shader ALU and L/S
if (shadowData.mainLightShadowCascadesCount > 1)
ApplySliceTransform(ref shadowSliceData, shadowmapWidth, shadowmapHeight);
return success;
}
/// <summary>
/// Extracts the spot light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="shadowMatrix">The shadow matrix to be set.</param>
/// <param name="viewMatrix">The view matrix to be set.</param>
/// <param name="projMatrix">The projection matrix to be set.</param>
/// <param name="splitData">The shadow split data containing culling information.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractSpotLightMatrix(ref CullingResults cullResults, ref ShadowData shadowData, int shadowLightIndex, out Matrix4x4 shadowMatrix, out Matrix4x4 viewMatrix, out Matrix4x4 projMatrix, out ShadowSplitData splitData)
{
return ExtractSpotLightMatrix(ref cullResults, shadowData.universalShadowData, shadowLightIndex, out shadowMatrix, out viewMatrix, out projMatrix, out splitData);
}
/// <summary>
/// Extracts the spot light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="shadowMatrix">The shadow matrix to be set.</param>
/// <param name="viewMatrix">The view matrix to be set.</param>
/// <param name="projMatrix">The projection matrix to be set.</param>
/// <param name="splitData">The shadow split data containing culling information.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractSpotLightMatrix(ref CullingResults cullResults, UniversalShadowData shadowData, int shadowLightIndex, out Matrix4x4 shadowMatrix, out Matrix4x4 viewMatrix, out Matrix4x4 projMatrix, out ShadowSplitData splitData)
{
bool success = cullResults.ComputeSpotShadowMatricesAndCullingPrimitives(shadowLightIndex, out viewMatrix, out projMatrix, out splitData); // returns false if input parameters are incorrect (rare)
shadowMatrix = GetShadowTransform(projMatrix, viewMatrix);
return success;
}
/// <summary>
/// Extracts the point light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="cubemapFace">The face of the cubemap to use.</param>
/// <param name="fovBias">The guard angle that must be added to a point light shadow face frustum angle in order to avoid shadows missing at the boundaries between cube faces.</param>
/// <param name="shadowMatrix">The shadow matrix to be set.</param>
/// <param name="viewMatrix">The view matrix to be set.</param>
/// <param name="projMatrix">The projection matrix to be set.</param>
/// <param name="splitData">The shadow split data containing culling information.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractPointLightMatrix(ref CullingResults cullResults, ref ShadowData shadowData, int shadowLightIndex, CubemapFace cubemapFace, float fovBias, out Matrix4x4 shadowMatrix, out Matrix4x4 viewMatrix, out Matrix4x4 projMatrix, out ShadowSplitData splitData)
{
return ExtractPointLightMatrix(ref cullResults, shadowData.universalShadowData, shadowLightIndex, cubemapFace, fovBias, out shadowMatrix, out viewMatrix, out projMatrix, out splitData);
}
/// <summary>
/// Extracts the point light matrix.
/// </summary>
/// <param name="cullResults">The results of a culling operation.</param>
/// <param name="shadowData">Data containing shadow settings.</param>
/// <param name="shadowLightIndex">The visible light index.</param>
/// <param name="cubemapFace">The face of the cubemap to use.</param>
/// <param name="fovBias">The guard angle that must be added to a point light shadow face frustum angle in order to avoid shadows missing at the boundaries between cube faces.</param>
/// <param name="shadowMatrix">The shadow matrix to be set.</param>
/// <param name="viewMatrix">The view matrix to be set.</param>
/// <param name="projMatrix">The projection matrix to be set.</param>
/// <param name="splitData">The shadow split data containing culling information.</param>
/// <returns>True if the matrix was successfully extracted.</returns>
public static bool ExtractPointLightMatrix(ref CullingResults cullResults, UniversalShadowData shadowData, int shadowLightIndex, CubemapFace cubemapFace, float fovBias, out Matrix4x4 shadowMatrix, out Matrix4x4 viewMatrix, out Matrix4x4 projMatrix, out ShadowSplitData splitData)
{
bool success = cullResults.ComputePointShadowMatricesAndCullingPrimitives(shadowLightIndex, cubemapFace, fovBias, out viewMatrix, out projMatrix, out splitData); // returns false if input parameters are incorrect (rare)
// In native API CullingResults.ComputeSpotShadowMatricesAndCullingPrimitives there is code that inverts the 3rd component of shadow-casting spot light's "world-to-local" matrix (it was so since its original addition to the code base):
// https://github.cds.internal.unity3d.com/unity/unity/commit/34813e063526c4be0ef0448dfaae3a911dd8be58#diff-cf0b417fc6bd8ee2356770797e628cd4R331
// (the same transformation has also always been used in the Built-In Render Pipeline)
//
// However native API CullingResults.ComputePointShadowMatricesAndCullingPrimitives does not contain this transformation.
// As a result, the view matrices returned for a point light shadow face, and for a spot light with same direction as that face, have opposite 3rd component.
//
// This causes normalBias to be incorrectly applied to shadow caster vertices during the point light shadow pass.
// To counter this effect, we invert the point light shadow view matrix component here:
{
viewMatrix.m10 = -viewMatrix.m10;
viewMatrix.m11 = -viewMatrix.m11;
viewMatrix.m12 = -viewMatrix.m12;
viewMatrix.m13 = -viewMatrix.m13;
}
shadowMatrix = GetShadowTransform(projMatrix, viewMatrix);
return success;
}
/// <summary>
/// Renders shadows to a shadow slice.
/// </summary>
/// <param name="cmd"></param>
/// <param name="context"></param>
/// <param name="shadowSliceData"></param>
/// <param name="settings"></param>
/// <param name="proj"></param>
/// <param name="view"></param>
public static void RenderShadowSlice(CommandBuffer cmd, ref ScriptableRenderContext context,
ref ShadowSliceData shadowSliceData, ref ShadowDrawingSettings settings,
Matrix4x4 proj, Matrix4x4 view)
{
cmd.SetGlobalDepthBias(1.0f, 2.5f); // these values match HDRP defaults (see https://github.com/Unity-Technologies/Graphics/blob/9544b8ed2f98c62803d285096c91b44e9d8cbc47/com.unity.render-pipelines.high-definition/Runtime/Lighting/Shadow/HDShadowAtlas.cs#L197 )
cmd.SetViewport(new Rect(shadowSliceData.offsetX, shadowSliceData.offsetY, shadowSliceData.resolution, shadowSliceData.resolution));
cmd.SetViewProjectionMatrices(view, proj);
var rl = context.CreateShadowRendererList(ref settings);
cmd.DrawRendererList(rl);
cmd.DisableScissorRect();
context.ExecuteCommandBuffer(cmd);
cmd.Clear();
cmd.SetGlobalDepthBias(0.0f, 0.0f); // Restore previous depth bias values
}
internal static void RenderShadowSlice(RasterCommandBuffer cmd,
ref ShadowSliceData shadowSliceData, ref RendererList shadowRendererList,
Matrix4x4 proj, Matrix4x4 view)
{
cmd.SetGlobalDepthBias(1.0f, 2.5f); // these values match HDRP defaults (see https://github.com/Unity-Technologies/Graphics/blob/9544b8ed2f98c62803d285096c91b44e9d8cbc47/com.unity.render-pipelines.high-definition/Runtime/Lighting/Shadow/HDShadowAtlas.cs#L197 )
cmd.SetViewport(new Rect(shadowSliceData.offsetX, shadowSliceData.offsetY, shadowSliceData.resolution, shadowSliceData.resolution));
cmd.SetViewProjectionMatrices(view, proj);
if(shadowRendererList.isValid)
cmd.DrawRendererList(shadowRendererList);
cmd.DisableScissorRect();
cmd.SetGlobalDepthBias(0.0f, 0.0f); // Restore previous depth bias values
}
/// <summary>
/// Renders shadows to a shadow slice.
/// </summary>
/// <param name="cmd"></param>
/// <param name="context"></param>
/// <param name="shadowSliceData"></param>
/// <param name="settings"></param>
public static void RenderShadowSlice(CommandBuffer cmd, ref ScriptableRenderContext context,
ref ShadowSliceData shadowSliceData, ref ShadowDrawingSettings settings)
{
RenderShadowSlice(cmd, ref context, ref shadowSliceData, ref settings,
shadowSliceData.projectionMatrix, shadowSliceData.viewMatrix);
}
/// <summary>
/// Calculates the maximum tile resolution in an Atlas.
/// </summary>
/// <param name="atlasWidth"></param>
/// <param name="atlasHeight"></param>
/// <param name="tileCount"></param>
/// <returns>The maximum tile resolution in an Atlas.</returns>
public static int GetMaxTileResolutionInAtlas(int atlasWidth, int atlasHeight, int tileCount)
{
int resolution = Mathf.Min(atlasWidth, atlasHeight);
int currentTileCount = atlasWidth / resolution * atlasHeight / resolution;
while (currentTileCount < tileCount)
{
resolution = resolution >> 1;
currentTileCount = atlasWidth / resolution * atlasHeight / resolution;
}
return resolution;
}
/// <summary>
/// Used for baking bake cascade transforms in each shadow matrix.
/// </summary>
/// <param name="shadowSliceData"></param>
/// <param name="atlasWidth"></param>
/// <param name="atlasHeight"></param>
public static void ApplySliceTransform(ref ShadowSliceData shadowSliceData, int atlasWidth, int atlasHeight)
{
Matrix4x4 sliceTransform = Matrix4x4.identity;
float oneOverAtlasWidth = 1.0f / atlasWidth;
float oneOverAtlasHeight = 1.0f / atlasHeight;
sliceTransform.m00 = shadowSliceData.resolution * oneOverAtlasWidth;
sliceTransform.m11 = shadowSliceData.resolution * oneOverAtlasHeight;
sliceTransform.m03 = shadowSliceData.offsetX * oneOverAtlasWidth;
sliceTransform.m13 = shadowSliceData.offsetY * oneOverAtlasHeight;
// Apply shadow slice scale and offset
shadowSliceData.shadowTransform = sliceTransform * shadowSliceData.shadowTransform;
}
/// <summary>
/// Calculates the depth and normal bias from a light.
/// </summary>
/// <param name="shadowLight"></param>
/// <param name="shadowLightIndex"></param>
/// <param name="shadowData"></param>
/// <param name="lightProjectionMatrix"></param>
/// <param name="shadowResolution"></param>
/// <returns>The depth and normal bias from a visible light.</returns>
public static Vector4 GetShadowBias(ref VisibleLight shadowLight, int shadowLightIndex, ref ShadowData shadowData, Matrix4x4 lightProjectionMatrix, float shadowResolution)
{
return GetShadowBias(ref shadowLight, shadowLightIndex, shadowData.bias, shadowData.supportsSoftShadows, lightProjectionMatrix, shadowResolution);
}
/// <summary>
/// Calculates the depth and normal bias from a light.
/// </summary>
/// <param name="shadowLight"></param>
/// <param name="shadowLightIndex"></param>
/// <param name="shadowData"></param>
/// <param name="lightProjectionMatrix"></param>
/// <param name="shadowResolution"></param>
/// <returns>The depth and normal bias from a visible light.</returns>
public static Vector4 GetShadowBias(ref VisibleLight shadowLight, int shadowLightIndex, UniversalShadowData shadowData, Matrix4x4 lightProjectionMatrix, float shadowResolution)
{
return GetShadowBias(ref shadowLight, shadowLightIndex, shadowData.bias, shadowData.supportsSoftShadows, lightProjectionMatrix, shadowResolution);
}
static Vector4 GetShadowBias(ref VisibleLight shadowLight, int shadowLightIndex, List<Vector4> bias, bool supportsSoftShadows, Matrix4x4 lightProjectionMatrix, float shadowResolution)
{
if (shadowLightIndex < 0 || shadowLightIndex >= bias.Count)
{
Debug.LogWarning(string.Format("{0} is not a valid light index.", shadowLightIndex));
return Vector4.zero;
}
float frustumSize;
if (shadowLight.lightType == LightType.Directional)
{
// Frustum size is guaranteed to be a cube as we wrap shadow frustum around a sphere
frustumSize = 2.0f / lightProjectionMatrix.m00;
}
else if (shadowLight.lightType == LightType.Spot)
{
// For perspective projections, shadow texel size varies with depth
// It will only work well if done in receiver side in the pixel shader. Currently UniversalRP
// do bias on caster side in vertex shader. When we add shader quality tiers we can properly
// handle this. For now, as a poor approximation we do a constant bias and compute the size of
// the frustum as if it was orthogonal considering the size at mid point between near and far planes.
// Depending on how big the light range is, it will be good enough with some tweaks in bias
frustumSize = Mathf.Tan(shadowLight.spotAngle * 0.5f * Mathf.Deg2Rad) * shadowLight.range; // half-width (in world-space units) of shadow frustum's "far plane"
}
else if (shadowLight.lightType == LightType.Point)
{
// [Copied from above case:]
// "For perspective projections, shadow texel size varies with depth
// It will only work well if done in receiver side in the pixel shader. Currently UniversalRP
// do bias on caster side in vertex shader. When we add shader quality tiers we can properly
// handle this. For now, as a poor approximation we do a constant bias and compute the size of
// the frustum as if it was orthogonal considering the size at mid point between near and far planes.
// Depending on how big the light range is, it will be good enough with some tweaks in bias"
// Note: HDRP uses normalBias both in HDShadowUtils.CalcGuardAnglePerspective and HDShadowAlgorithms/EvalShadow_NormalBias (receiver bias)
float fovBias = Internal.AdditionalLightsShadowCasterPass.GetPointLightShadowFrustumFovBiasInDegrees((int)shadowResolution, (shadowLight.light.shadows == LightShadows.Soft));
// Note: the same fovBias was also used to compute ShadowUtils.ExtractPointLightMatrix
float cubeFaceAngle = 90 + fovBias;
frustumSize = Mathf.Tan(cubeFaceAngle * 0.5f * Mathf.Deg2Rad) * shadowLight.range; // half-width (in world-space units) of shadow frustum's "far plane"
}
else
{
Debug.LogWarning("Only point, spot and directional shadow casters are supported in universal pipeline");
frustumSize = 0.0f;
}
// depth and normal bias scale is in shadowmap texel size in world space
float texelSize = frustumSize / shadowResolution;
float depthBias = -bias[shadowLightIndex].x * texelSize;
float normalBias = -bias[shadowLightIndex].y * texelSize;
// The current implementation of NormalBias in Universal RP is the same as in Unity Built-In RP (i.e moving shadow caster vertices along normals when projecting them to the shadow map).
// This does not work well with Point Lights, which is why NormalBias value is hard-coded to 0.0 in Built-In RP (see value of unity_LightShadowBias.z in FrameDebugger, and native code that sets it: https://github.cds.internal.unity3d.com/unity/unity/blob/a9c916ba27984da43724ba18e70f51469e0c34f5/Runtime/Camera/Shadows.cpp#L1686 )
// We follow the same convention in Universal RP:
if (shadowLight.lightType == LightType.Point)
normalBias = 0.0f;
if (supportsSoftShadows && shadowLight.light.shadows == LightShadows.Soft)
{
SoftShadowQuality softShadowQuality = SoftShadowQuality.Medium;
if (shadowLight.light.TryGetComponent(out UniversalAdditionalLightData additionalLightData))
softShadowQuality = additionalLightData.softShadowQuality;
// TODO: depth and normal bias assume sample is no more than 1 texel away from shadowmap
// This is not true with PCF. Ideally we need to do either
// cone base bias (based on distance to center sample)
// or receiver place bias based on derivatives.
// For now we scale it by the PCF kernel size of non-mobile platforms (5x5)
float kernelRadius = 2.5f;
switch (softShadowQuality)
{
case SoftShadowQuality.High: kernelRadius = 3.5f; break; // 7x7
case SoftShadowQuality.Medium: kernelRadius = 2.5f; break; // 5x5
case SoftShadowQuality.Low: kernelRadius = 1.5f; break; // 3x3
default: break;
}
depthBias *= kernelRadius;
normalBias *= kernelRadius;
}
return new Vector4(depthBias, normalBias, (float)shadowLight.lightType, 0.0f);
}
/// <summary>
/// Extract scale and bias from a fade distance to achieve a linear fading of the fade distance.
/// </summary>
/// <param name="fadeDistance">Distance at which object should be totally fade</param>
/// <param name="border">Normalized distance of fade</param>
/// <param name="scale">[OUT] Slope of the fading on the fading part</param>
/// <param name="bias">[OUT] Ordinate of the fading part at abscissa 0</param>
internal static void GetScaleAndBiasForLinearDistanceFade(float fadeDistance, float border, out float scale, out float bias)
{
// To avoid division from zero
// This values ensure that fade within cascade will be 0 and outside 1
if (border < 0.0001f)
{
float multiplier = 1000f; // To avoid blending if difference is in fractions
scale = multiplier;
bias = -fadeDistance * multiplier;
return;
}
border = 1 - border;
border *= border;
// Fade with distance calculation is just a linear fade from 90% of fade distance to fade distance. 90% arbitrarily chosen but should work well enough.
float distanceFadeNear = border * fadeDistance;
scale = 1.0f / (fadeDistance - distanceFadeNear);
bias = -distanceFadeNear / (fadeDistance - distanceFadeNear);
}
/// <summary>
/// Sets up the shadow bias, light direction and position for rendering.
/// </summary>
/// <param name="cmd"></param>
/// <param name="shadowLight"></param>
/// <param name="shadowBias"></param>
public static void SetupShadowCasterConstantBuffer(CommandBuffer cmd, ref VisibleLight shadowLight, Vector4 shadowBias)
{
SetupShadowCasterConstantBuffer(CommandBufferHelpers.GetRasterCommandBuffer(cmd), ref shadowLight, shadowBias);
}
internal static void SetupShadowCasterConstantBuffer(RasterCommandBuffer cmd, ref VisibleLight shadowLight, Vector4 shadowBias)
{
SetShadowBias(cmd, shadowBias);
// Light direction is currently used in shadow caster pass to apply shadow normal offset (normal bias).
Vector3 lightDirection = -shadowLight.localToWorldMatrix.GetColumn(2);
SetLightDirection(cmd, lightDirection);
// For punctual lights, computing light direction at each vertex position provides more consistent results (shadow shape does not change when "rotating the point light" for example)
Vector3 lightPosition = shadowLight.localToWorldMatrix.GetColumn(3);
SetLightPosition(cmd, lightPosition);
}
internal static void SetShadowBias(RasterCommandBuffer cmd, Vector4 shadowBias)
{
cmd.SetGlobalVector(ShaderPropertyId.shadowBias, shadowBias);
}
internal static void SetLightDirection(RasterCommandBuffer cmd, Vector3 lightDirection)
{
cmd.SetGlobalVector(ShaderPropertyId.lightDirection, new Vector4(lightDirection.x, lightDirection.y, lightDirection.z, 0.0f));
}
internal static void SetLightPosition(RasterCommandBuffer cmd, Vector3 lightPosition)
{
cmd.SetGlobalVector(ShaderPropertyId.lightPosition, new Vector4(lightPosition.x, lightPosition.y, lightPosition.z, 1.0f));
}
internal static void SetCameraPosition(RasterCommandBuffer cmd, Vector3 worldSpaceCameraPos)
{
cmd.SetGlobalVector(ShaderPropertyId.worldSpaceCameraPos, worldSpaceCameraPos);
}
internal static void SetWorldToCameraAndCameraToWorldMatrices(RasterCommandBuffer cmd, Matrix4x4 viewMatrix)
{
// There's an inconsistency in handedness between unity_matrixV and unity_WorldToCamera
// Unity changes the handedness of unity_WorldToCamera (see Camera::CalculateMatrixShaderProps)
// we will also change it here to avoid breaking existing shaders. (case 1257518)
Matrix4x4 worldToCameraMatrix = Matrix4x4.Scale(new Vector3(1.0f, 1.0f, -1.0f)) * viewMatrix;
Matrix4x4 cameraToWorldMatrix = worldToCameraMatrix.inverse;
cmd.SetGlobalMatrix(ShaderPropertyId.worldToCameraMatrix, worldToCameraMatrix);
cmd.SetGlobalMatrix(ShaderPropertyId.cameraToWorldMatrix, cameraToWorldMatrix);
}
private static RenderTextureDescriptor GetTemporaryShadowTextureDescriptor(int width, int height, int bits)
{
var format = Experimental.Rendering.GraphicsFormatUtility.GetDepthStencilFormat(bits, 0);
RenderTextureDescriptor rtd = new RenderTextureDescriptor(width, height, Experimental.Rendering.GraphicsFormat.None, format);
rtd.shadowSamplingMode = RenderingUtils.SupportsRenderTextureFormat(RenderTextureFormat.Shadowmap) ? ShadowSamplingMode.CompareDepths : ShadowSamplingMode.None;
return rtd;
}
/// <summary>
/// Gets a temporary render texture for shadows.
/// This function has been deprecated. Use AllocShadowRT or ShadowRTReAllocateIfNeeded instead.
/// </summary>
/// <param name="width">The width of the texture.</param>
/// <param name="height">The height of the texture.</param>
/// <param name="bits">The number of depth bits.</param>
/// <returns>A shadow render texture.</returns>
[Obsolete("Use AllocShadowRT or ShadowRTReAllocateIfNeeded", true)]
public static RenderTexture GetTemporaryShadowTexture(int width, int height, int bits)
{
var rtd = GetTemporaryShadowTextureDescriptor(width, height, bits);
var shadowTexture = RenderTexture.GetTemporary(rtd);
shadowTexture.filterMode = m_ForceShadowPointSampling ? FilterMode.Point : FilterMode.Bilinear;
shadowTexture.wrapMode = TextureWrapMode.Clamp;
return shadowTexture;
}
/// <summary>
/// Return true if handle does not match the requirements
/// </summary>
/// <param name="handle">RTHandle to check (can be null).</param>
/// <param name="width">Width of the RTHandle to match.</param>
/// <param name="height">Height of the RTHandle to match.</param>
/// <param name="bits">Depth bits of the RTHandle to match.</param>
/// <param name="anisoLevel">Anisotropic filtering level of the RTHandle to match.</param>
/// <param name="mipMapBias">Bias applied to mipmaps during filtering of the RTHandle to match.</param>
/// <param name="name">Name of the RTHandle of the RTHandle to match.</param>
/// <returns>If the RTHandle needs to be re-allocated</returns>
public static bool ShadowRTNeedsReAlloc(RTHandle handle, int width, int height, int bits, int anisoLevel, float mipMapBias, string name)
{
if (handle == null || handle.rt == null)
return true;
var descriptor = GetTemporaryShadowTextureDescriptor(width, height, bits);
if (m_ForceShadowPointSampling)
{
if (handle.rt.filterMode != FilterMode.Point)
return true;
}
else
{
if (handle.rt.filterMode != FilterMode.Bilinear)
return true;
}
TextureDesc shadowDesc = RTHandleResourcePool.CreateTextureDesc(descriptor, TextureSizeMode.Explicit, anisoLevel, mipMapBias, m_ForceShadowPointSampling ? FilterMode.Point : FilterMode.Bilinear, TextureWrapMode.Clamp, name);
return RenderingUtils.RTHandleNeedsReAlloc(handle, shadowDesc, false);
}
/// <summary>
/// Allocate a Shadow Map
/// </summary>
/// <param name="width">Width of the Shadow Map.</param>
/// <param name="height">Height of the Shadow Map.</param>
/// <param name="bits">Minimum depth bits of the Shadow Map.</param>
/// <param name="anisoLevel">Anisotropic filtering level of the Shadow Map.</param>
/// <param name="mipMapBias">Bias applied to mipmaps during filtering of the Shadow Map.</param>
/// <param name="name">Name of the Shadow Map.</param>
/// <returns>If an RTHandle for the Shadow Map</returns>
public static RTHandle AllocShadowRT(int width, int height, int bits, int anisoLevel, float mipMapBias, string name)
{
var rtd = GetTemporaryShadowTextureDescriptor(width, height, bits);
return RTHandles.Alloc(rtd, m_ForceShadowPointSampling ? FilterMode.Point : FilterMode.Bilinear, TextureWrapMode.Clamp, isShadowMap: true, name: name);
}
/// <summary>
/// Allocate a Shadow Map or re-allocate if it doesn't match requirements.
/// For use only if the map requirements changes at runtime.
/// </summary>
/// <param name="handle">RTHandle to check (can be null).</param>
/// <param name="width">Width of the Shadow Map.</param>
/// <param name="height">Height of the Shadow Map.</param>
/// <param name="bits">Minimum depth bits of the Shadow Map.</param>
/// <param name="anisoLevel">Anisotropic filtering level of the Shadow Map.</param>
/// <param name="mipMapBias">Bias applied to mipmaps during filtering of the Shadow Map.</param>
/// <param name="name">Name of the Shadow Map.</param>
/// <returns>If the RTHandle was re-allocated</returns>
public static bool ShadowRTReAllocateIfNeeded(ref RTHandle handle, int width, int height, int bits, int anisoLevel = 1, float mipMapBias = 0, string name = "")
{
if (ShadowRTNeedsReAlloc(handle, width, height, bits, anisoLevel, mipMapBias, name))
{
handle?.Release();
handle = AllocShadowRT(width, height, bits, anisoLevel, mipMapBias, name);
return true;
}
return false;
}
static Matrix4x4 GetShadowTransform(Matrix4x4 proj, Matrix4x4 view)
{
// Currently CullResults ComputeDirectionalShadowMatricesAndCullingPrimitives doesn't
// apply z reversal to projection matrix. We need to do it manually here.
if (SystemInfo.usesReversedZBuffer)
{
proj.m20 = -proj.m20;
proj.m21 = -proj.m21;
proj.m22 = -proj.m22;
proj.m23 = -proj.m23;
}
Matrix4x4 worldToShadow = proj * view;
var textureScaleAndBias = Matrix4x4.identity;
textureScaleAndBias.m00 = 0.5f;
textureScaleAndBias.m11 = 0.5f;
textureScaleAndBias.m22 = 0.5f;
textureScaleAndBias.m03 = 0.5f;
textureScaleAndBias.m23 = 0.5f;
textureScaleAndBias.m13 = 0.5f;
// textureScaleAndBias maps texture space coordinates from [-1,1] to [0,1]
// Apply texture scale and offset to save a MAD in shader.
return textureScaleAndBias * worldToShadow;
}
internal static float SoftShadowQualityToShaderProperty(Light light, bool softShadowsEnabled)
{
float softShadows = softShadowsEnabled ? 1.0f : 0.0f;
if (light.TryGetComponent(out UniversalAdditionalLightData additionalLightData))
{
var softShadowQuality = (additionalLightData.softShadowQuality == SoftShadowQuality.UsePipelineSettings)
? UniversalRenderPipeline.asset?.softShadowQuality
: additionalLightData.softShadowQuality;
softShadows *= Math.Max((int)softShadowQuality, (int)SoftShadowQuality.Low);
}
return softShadows;
}
internal static bool SupportsPerLightSoftShadowQuality()
{
bool supportsPerLightSoftShadowQuality = true;
#if ENABLE_VR && ENABLE_VR_MODULE
#if PLATFORM_WINRT || PLATFORM_ANDROID
// We are using static branches on Quest2 + HL for performance reasons
supportsPerLightSoftShadowQuality = !PlatformAutoDetect.isXRMobile;
#endif
#endif
return supportsPerLightSoftShadowQuality;
}
internal static void SetPerLightSoftShadowKeyword(RasterCommandBuffer cmd, bool hasSoftShadows)
{
if (SupportsPerLightSoftShadowQuality())
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadows, hasSoftShadows);
}
internal static void SetSoftShadowQualityShaderKeywords(RasterCommandBuffer cmd, UniversalShadowData shadowData)
{
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadows, shadowData.isKeywordSoftShadowsEnabled);
if (SupportsPerLightSoftShadowQuality())
{
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsLow, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsMedium, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsHigh, false);
}
else
{
if (shadowData.isKeywordSoftShadowsEnabled && UniversalRenderPipeline.asset?.softShadowQuality == SoftShadowQuality.Low)
{
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsLow, true);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsMedium, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsHigh, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadows, false);
}
else if (shadowData.isKeywordSoftShadowsEnabled && UniversalRenderPipeline.asset?.softShadowQuality == SoftShadowQuality.Medium)
{
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsLow, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsMedium, true);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsHigh, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadows, false);
}
else if (shadowData.isKeywordSoftShadowsEnabled && UniversalRenderPipeline.asset?.softShadowQuality == SoftShadowQuality.High)
{
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsLow, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsMedium, false);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadowsHigh, true);
cmd.SetKeyword(ShaderGlobalKeywords.SoftShadows, false);
}
}
}
internal static bool IsValidShadowCastingLight(UniversalLightData lightData, int i)
{
ref VisibleLight shadowLight = ref lightData.visibleLights.UnsafeElementAt(i);
Light light = shadowLight.light;
if (light == null)
return false;
return IsValidShadowCastingLight(lightData, i, shadowLight.lightType, light.shadows, light.shadowStrength);
}
internal static bool IsValidShadowCastingLight(UniversalLightData lightData, int i, LightType lightType, LightShadows lightShadows, float shadowStrength)
{
if (i == lightData.mainLightIndex)
return false;
// Directional and light shadows are not supported in the shadow map atlas
if (lightType == LightType.Directional)
return false;
return lightShadows != LightShadows.None && shadowStrength > 0.0f;
}
internal static int GetPunctualLightShadowSlicesCount(in LightType lightType)
{
switch (lightType)
{
case LightType.Spot:
return 1;
case LightType.Point:
return 6;
default:
return 0;
}
}
internal static bool FastApproximately(float a, float b)
{
return Mathf.Abs(a - b) < 0.000001f;
}
internal static bool FastApproximately(Vector4 a, Vector4 b)
{
return FastApproximately(a.x, b.x)
&& FastApproximately(a.y, b.y)
&& FastApproximately(a.z, b.z)
&& FastApproximately(a.w, b.w);
}
internal const int kMinimumPunctualLightHardShadowResolution = 8;
internal const int kMinimumPunctualLightSoftShadowResolution = 16;
// Minimal shadow map resolution required to have meaningful shadows visible during lighting
internal static int MinimalPunctualLightShadowResolution(bool softShadow)
{
return softShadow ? kMinimumPunctualLightSoftShadowResolution : kMinimumPunctualLightHardShadowResolution;
}
}
}
|