You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Fix optimal plane bias with clipmap LOD fallback - Clean up and optimize some of the clipmap level offset math - Rename some fields to make the resuse between clipmaps/mips clear #rb brian.karis, ola.olsson #ROBOMERGE-SOURCE: CL 15466663 in //UE5/Release-5.0-EarlyAccess/... #ROBOMERGE-BOT: STARSHIP (Release-5.0-EarlyAccess -> Main) (v771-15082668) [CL 15466676 by andrew lauritzen in ue5-main branch]
186 lines
8.1 KiB
C++
186 lines
8.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
VirtualShadowMapClipmap.cpp
|
|
=============================================================================*/
|
|
|
|
#include "VirtualShadowMapClipmap.h"
|
|
#include "CoreMinimal.h"
|
|
#include "HAL/IConsoleManager.h"
|
|
#include "RendererModule.h"
|
|
#include "VirtualShadowMapArray.h"
|
|
#include "VirtualShadowMapCacheManager.h"
|
|
|
|
static TAutoConsoleVariable<float> CVarVirtualShadowMapClipmapResolutionLodBias(
|
|
TEXT( "r.Shadow.Virtual.Clipmap.ResolutionLodBias" ),
|
|
-0.5f,
|
|
TEXT( "" ),
|
|
ECVF_RenderThreadSafe
|
|
);
|
|
static TAutoConsoleVariable<int32> CVarVirtualShadowMapClipmapFirstLevel(
|
|
TEXT( "r.Shadow.Virtual.Clipmap.FirstLevel" ),
|
|
8,
|
|
TEXT( "First level of the virtual clipmap. Lower values allow higher resolution shadows closer to the camera." ),
|
|
ECVF_RenderThreadSafe
|
|
);
|
|
static TAutoConsoleVariable<float> CVarVirtualShadowMapClipmapMaxRadius(
|
|
TEXT( "r.Shadow.Virtual.Clipmap.MaxRadius" ),
|
|
1000000.0f,
|
|
TEXT( "Maximum distance the clipmap is guaranteed to cover. Determines the number of clipmap levels." ),
|
|
ECVF_RenderThreadSafe
|
|
);
|
|
|
|
// "Virtual" clipmap level to clipmap radius
|
|
// NOTE: This is the radius of around the clipmap origin that this level must cover
|
|
// The actual clipmap dimensions will be larger due to snapping and other accomodations
|
|
static float GetLevelRadius(int32 Level)
|
|
{
|
|
// NOTE: Virtual clipmap indices can be negative (although not commonly)
|
|
// Clipmap level rounds *down*, so radius needs to cover out to 2^(Level+1), where it flips
|
|
return FMath::Pow(2.0f, static_cast<float>(Level + 1));
|
|
}
|
|
|
|
FVirtualShadowMapClipmap::FVirtualShadowMapClipmap(
|
|
FVirtualShadowMapArray& VirtualShadowMapArray,
|
|
FVirtualShadowMapArrayCacheManager* VirtualShadowMapArrayCacheManager,
|
|
const FLightSceneInfo& InLightSceneInfo,
|
|
const FMatrix& WorldToLightRotationMatrix,
|
|
const FViewMatrices& CameraViewMatrices,
|
|
FIntPoint CameraViewRectSize,
|
|
const FViewInfo* InDependentView)
|
|
: LightSceneInfo(InLightSceneInfo),
|
|
DependentView(InDependentView)
|
|
{
|
|
check(WorldToLightRotationMatrix.GetOrigin() == FVector(0, 0, 0)); // Should not contain translation or scaling
|
|
|
|
const FMatrix FaceMatrix(
|
|
FPlane( 0, 0, 1, 0 ),
|
|
FPlane( 0, 1, 0, 0 ),
|
|
FPlane(-1, 0, 0, 0 ),
|
|
FPlane( 0, 0, 0, 1 ));
|
|
|
|
WorldToViewRotationMatrix = WorldToLightRotationMatrix * FaceMatrix;
|
|
// Pure rotation matrix
|
|
FMatrix ViewToWorldRotationMatrix = WorldToViewRotationMatrix.GetTransposed();
|
|
|
|
// NOTE: Rotational (roll) invariance of the directional light depends on square pixels so we just base everything on the camera X scales/resolution
|
|
// NOTE: 0.5 because we double the size of the clipmap region below to handle snapping
|
|
float LodScale = 0.5f / CameraViewMatrices.GetProjectionScale().X;
|
|
LodScale *= float(FVirtualShadowMap::VirtualMaxResolutionXY) / float(CameraViewRectSize.X);
|
|
|
|
ResolutionLodBias = CVarVirtualShadowMapClipmapResolutionLodBias.GetValueOnRenderThread() + FMath::Log2(LodScale);
|
|
// Clamp negative absolute resolution biases as they would exceed the maximum resolution/ranges allocated
|
|
ResolutionLodBias = FMath::Max(0.0f, ResolutionLodBias);
|
|
|
|
// For now we adjust resolution by just biasing the page we look up in. This is wasteful in terms of page table vs.
|
|
// just resizing the virtual shadow maps for each clipmap, but convenient for now. This means we need to additionally bias
|
|
// which levels are present.
|
|
FirstLevel = CVarVirtualShadowMapClipmapFirstLevel.GetValueOnRenderThread();
|
|
MaxRadius = CVarVirtualShadowMapClipmapMaxRadius.GetValueOnRenderThread();
|
|
int32 LastLevel = FMath::FloorToInt(FMath::Log2(MaxRadius) + ResolutionLodBias);
|
|
LastLevel = FMath::Max(FirstLevel, LastLevel);
|
|
int32 LevelCount = LastLevel - FirstLevel + 1;
|
|
|
|
// Per-clipmap projection data
|
|
LevelData.Empty();
|
|
LevelData.AddDefaulted(LevelCount);
|
|
|
|
WorldOrigin = CameraViewMatrices.GetViewOrigin();
|
|
|
|
for (int32 Index = 0; Index < LevelCount; ++Index)
|
|
{
|
|
FLevelData& Level = LevelData[Index];
|
|
const int32 LevelIndex = Index + FirstLevel; // Absolute (virtual) level index
|
|
|
|
// TODO: Allocate these as a chunk if we continue to use one per clipmap level
|
|
// This isn't actually required at the moment but enforcing it keeps optimization options open
|
|
Level.VirtualShadowMap = VirtualShadowMapArray.Allocate();
|
|
ensure(Index == 0 || (Level.VirtualShadowMap->ID == (LevelData[Index-1].VirtualShadowMap->ID + 1)));
|
|
|
|
const float RawLevelRadius = GetLevelRadius(LevelIndex);
|
|
|
|
float HalfLevelDim = 2.0f * RawLevelRadius;
|
|
float SnapSize = RawLevelRadius;
|
|
|
|
FVector ViewCenter = WorldToViewRotationMatrix.TransformPosition(WorldOrigin);
|
|
FIntPoint CenterSnapUnits(
|
|
FMath::RoundToInt(ViewCenter.X / SnapSize),
|
|
FMath::RoundToInt(ViewCenter.Y / SnapSize));
|
|
ViewCenter.X = CenterSnapUnits.X * SnapSize;
|
|
ViewCenter.Y = CenterSnapUnits.Y * SnapSize;
|
|
|
|
FIntPoint CornerOffset;
|
|
CornerOffset.X = -CenterSnapUnits.X + 2;
|
|
CornerOffset.Y = CenterSnapUnits.Y + 2;
|
|
|
|
const FVector SnappedWorldCenter = ViewToWorldRotationMatrix.TransformPosition(ViewCenter);
|
|
|
|
const float ZScale = 0.5f / RawLevelRadius;
|
|
const float ZOffset = RawLevelRadius;
|
|
|
|
Level.WorldCenter = SnappedWorldCenter;
|
|
Level.ViewToClip = FReversedZOrthoMatrix(HalfLevelDim, HalfLevelDim, ZScale, ZOffset);
|
|
Level.CornerOffset = CornerOffset;
|
|
|
|
if (VirtualShadowMapArrayCacheManager)
|
|
{
|
|
// NOTE: We use the absolute (virtual) level index so that the caching is robust against changes to the chosen level range
|
|
TSharedPtr<FVirtualShadowMapCacheEntry> CacheEntry = VirtualShadowMapArrayCacheManager->FindCreateCacheEntry(LightSceneInfo.Id, LevelIndex);
|
|
if (CacheEntry)
|
|
{
|
|
// We snap to half the size of the VSM at each level
|
|
check((FVirtualShadowMap::Level0DimPagesXY & 1) == 0);
|
|
FIntPoint PageOffset(CornerOffset * (FVirtualShadowMap::Level0DimPagesXY >> 2));
|
|
float DepthOffset = -ViewCenter.Z * ZScale;
|
|
|
|
CacheEntry->UpdateClipmap(Level.VirtualShadowMap->ID, WorldToLightRotationMatrix, PageOffset, DepthOffset);
|
|
|
|
Level.VirtualShadowMap->VirtualShadowMapCacheEntry = CacheEntry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
FViewMatrices FVirtualShadowMapClipmap::GetViewMatrices(int32 ClipmapIndex) const
|
|
{
|
|
check(ClipmapIndex >= 0 && ClipmapIndex < LevelData.Num());
|
|
const FLevelData& Level = LevelData[ClipmapIndex];
|
|
|
|
FViewMatrices::FMinimalInitializer Initializer;
|
|
|
|
// NOTE: Be careful here! There's special logic in FViewMatrices around ViewOrigin for ortho projections we need to bypass...
|
|
// There's also the fact that some of this data is going to be "wrong", due to the "overridden" matrix thing that shadows do
|
|
Initializer.ViewOrigin = Level.WorldCenter;
|
|
Initializer.ViewRotationMatrix = WorldToViewRotationMatrix;
|
|
Initializer.ProjectionMatrix = Level.ViewToClip;
|
|
|
|
// TODO: This is probably unused in the shadows/nanite path, but coupling here is not ideal
|
|
Initializer.ConstrainedViewRect = FIntRect(0, 0, FVirtualShadowMap::VirtualMaxResolutionXY, FVirtualShadowMap::VirtualMaxResolutionXY);
|
|
|
|
return FViewMatrices(Initializer);
|
|
}
|
|
|
|
FVirtualShadowMapProjectionShaderData FVirtualShadowMapClipmap::GetProjectionShaderData(int32 ClipmapIndex) const
|
|
{
|
|
check(ClipmapIndex >= 0 && ClipmapIndex < LevelData.Num());
|
|
const FLevelData& Level = LevelData[ClipmapIndex];
|
|
|
|
// NOTE: Some shader logic (projection, etc) assumes some of these parameters are constant across all levels in a clipmap
|
|
FVirtualShadowMapProjectionShaderData Data;
|
|
Data.TranslatedWorldToShadowViewMatrix = WorldToViewRotationMatrix;
|
|
Data.ShadowViewToClipMatrix = Level.ViewToClip;
|
|
Data.TranslatedWorldToShadowUVMatrix = CalcTranslatedWorldToShadowUVMatrix(WorldToViewRotationMatrix, Level.ViewToClip);
|
|
Data.TranslatedWorldToShadowUVNormalMatrix = CalcTranslatedWorldToShadowUVNormalMatrix(WorldToViewRotationMatrix, Level.ViewToClip);
|
|
Data.ShadowPreViewTranslation = -Level.WorldCenter;
|
|
Data.VirtualShadowMapId = Level.VirtualShadowMap->ID;
|
|
Data.LightType = ELightComponentType::LightType_Directional;
|
|
Data.ClipmapWorldOrigin = WorldOrigin;
|
|
Data.ClipmapIndex = ClipmapIndex;
|
|
Data.ClipmapLevel = FirstLevel + ClipmapIndex;
|
|
Data.ClipmapLevelCount = LevelData.Num();
|
|
Data.ClipmapResolutionLodBias = ResolutionLodBias;
|
|
Data.ClipmapCornerOffset = Level.CornerOffset;
|
|
|
|
return Data;
|
|
}
|