您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
398 行
21 KiB
398 行
21 KiB
namespace UnityEngine.Rendering.Universal
|
|
{
|
|
internal class ForwardRenderer : ScriptableRenderer
|
|
{
|
|
const int k_DepthStencilBufferBits = 32;
|
|
const string k_CreateCameraTextures = "Create Camera Texture";
|
|
|
|
ColorGradingLutPass m_ColorGradingLutPass;
|
|
DepthOnlyPass m_DepthPrepass;
|
|
MainLightShadowCasterPass m_MainLightShadowCasterPass;
|
|
AdditionalLightsShadowCasterPass m_AdditionalLightsShadowCasterPass;
|
|
ScreenSpaceShadowResolvePass m_ScreenSpaceShadowResolvePass;
|
|
DrawObjectsPass m_RenderOpaqueForwardPass;
|
|
DrawSkyboxPass m_DrawSkyboxPass;
|
|
CopyDepthPass m_CopyDepthPass;
|
|
CopyColorPass m_CopyColorPass;
|
|
DrawObjectsPass m_RenderTransparentForwardPass;
|
|
InvokeOnRenderObjectCallbackPass m_OnRenderObjectCallbackPass;
|
|
PostProcessPass m_PostProcessPass;
|
|
PostProcessPass m_FinalPostProcessPass;
|
|
FinalBlitPass m_FinalBlitPass;
|
|
CapturePass m_CapturePass;
|
|
|
|
#if UNITY_EDITOR
|
|
SceneViewDepthCopyPass m_SceneViewDepthCopyPass;
|
|
#endif
|
|
|
|
RenderTargetHandle m_ActiveCameraColorAttachment;
|
|
RenderTargetHandle m_ActiveCameraDepthAttachment;
|
|
RenderTargetHandle m_CameraColorAttachment;
|
|
RenderTargetHandle m_CameraDepthAttachment;
|
|
RenderTargetHandle m_DepthTexture;
|
|
RenderTargetHandle m_OpaqueColor;
|
|
RenderTargetHandle m_AfterPostProcessColor;
|
|
RenderTargetHandle m_ColorGradingLut;
|
|
|
|
ForwardLights m_ForwardLights;
|
|
StencilState m_DefaultStencilState;
|
|
|
|
public ForwardRenderer(ForwardRendererData data) : base(data)
|
|
{
|
|
Material blitMaterial = CoreUtils.CreateEngineMaterial(data.shaders.blitPS);
|
|
Material copyDepthMaterial = CoreUtils.CreateEngineMaterial(data.shaders.copyDepthPS);
|
|
Material samplingMaterial = CoreUtils.CreateEngineMaterial(data.shaders.samplingPS);
|
|
Material screenspaceShadowsMaterial = CoreUtils.CreateEngineMaterial(data.shaders.screenSpaceShadowPS);
|
|
|
|
StencilStateData stencilData = data.defaultStencilState;
|
|
m_DefaultStencilState = StencilState.defaultValue;
|
|
m_DefaultStencilState.enabled = stencilData.overrideStencilState;
|
|
m_DefaultStencilState.SetCompareFunction(stencilData.stencilCompareFunction);
|
|
m_DefaultStencilState.SetPassOperation(stencilData.passOperation);
|
|
m_DefaultStencilState.SetFailOperation(stencilData.failOperation);
|
|
m_DefaultStencilState.SetZFailOperation(stencilData.zFailOperation);
|
|
|
|
// Note: Since all custom render passes inject first and we have stable sort,
|
|
// we inject the builtin passes in the before events.
|
|
m_MainLightShadowCasterPass = new MainLightShadowCasterPass(RenderPassEvent.BeforeRenderingShadows);
|
|
m_AdditionalLightsShadowCasterPass = new AdditionalLightsShadowCasterPass(RenderPassEvent.BeforeRenderingShadows);
|
|
m_DepthPrepass = new DepthOnlyPass(RenderPassEvent.BeforeRenderingPrepasses, RenderQueueRange.opaque, data.opaqueLayerMask);
|
|
m_ScreenSpaceShadowResolvePass = new ScreenSpaceShadowResolvePass(RenderPassEvent.BeforeRenderingPrepasses, screenspaceShadowsMaterial);
|
|
m_ColorGradingLutPass = new ColorGradingLutPass(RenderPassEvent.BeforeRenderingOpaques, data.postProcessData);
|
|
m_RenderOpaqueForwardPass = new DrawObjectsPass("Render Opaques", true, RenderPassEvent.BeforeRenderingOpaques, RenderQueueRange.opaque, data.opaqueLayerMask, m_DefaultStencilState, stencilData.stencilReference);
|
|
m_CopyDepthPass = new CopyDepthPass(RenderPassEvent.BeforeRenderingOpaques, copyDepthMaterial);
|
|
m_DrawSkyboxPass = new DrawSkyboxPass(RenderPassEvent.BeforeRenderingSkybox);
|
|
m_CopyColorPass = new CopyColorPass(RenderPassEvent.BeforeRenderingTransparents, samplingMaterial);
|
|
m_RenderTransparentForwardPass = new DrawObjectsPass("Render Transparents", false, RenderPassEvent.BeforeRenderingTransparents, RenderQueueRange.transparent, data.transparentLayerMask, m_DefaultStencilState, stencilData.stencilReference);
|
|
m_OnRenderObjectCallbackPass = new InvokeOnRenderObjectCallbackPass(RenderPassEvent.BeforeRenderingPostProcessing);
|
|
m_PostProcessPass = new PostProcessPass(RenderPassEvent.BeforeRenderingPostProcessing, data.postProcessData);
|
|
m_FinalPostProcessPass = new PostProcessPass(RenderPassEvent.AfterRenderingPostProcessing, data.postProcessData);
|
|
m_CapturePass = new CapturePass(RenderPassEvent.AfterRendering);
|
|
m_FinalBlitPass = new FinalBlitPass(RenderPassEvent.AfterRendering, blitMaterial);
|
|
|
|
#if UNITY_EDITOR
|
|
m_SceneViewDepthCopyPass = new SceneViewDepthCopyPass(RenderPassEvent.AfterRendering + 9, copyDepthMaterial);
|
|
#endif
|
|
|
|
// RenderTexture format depends on camera and pipeline (HDR, non HDR, etc)
|
|
// Samples (MSAA) depend on camera and pipeline
|
|
m_CameraColorAttachment.Init("_CameraColorTexture");
|
|
m_CameraDepthAttachment.Init("_CameraDepthAttachment");
|
|
m_DepthTexture.Init("_CameraDepthTexture");
|
|
m_OpaqueColor.Init("_CameraOpaqueTexture");
|
|
m_AfterPostProcessColor.Init("_AfterPostProcessTexture");
|
|
m_ColorGradingLut.Init("_InternalGradingLut");
|
|
m_ForwardLights = new ForwardLights();
|
|
}
|
|
|
|
public override void Setup(ScriptableRenderContext context, ref RenderingData renderingData)
|
|
{
|
|
Camera camera = renderingData.cameraData.camera;
|
|
ref CameraData cameraData = ref renderingData.cameraData;
|
|
RenderTextureDescriptor cameraTargetDescriptor = renderingData.cameraData.cameraTargetDescriptor;
|
|
|
|
// Special path for depth only offscreen cameras. Only write opaques + transparents.
|
|
bool isOffscreenDepthTexture = camera.targetTexture != null && camera.targetTexture.format == RenderTextureFormat.Depth;
|
|
if (isOffscreenDepthTexture)
|
|
{
|
|
ConfigureCameraTarget(BuiltinRenderTextureType.CameraTarget, BuiltinRenderTextureType.CameraTarget);
|
|
|
|
for (int i = 0; i < rendererFeatures.Count; ++i)
|
|
rendererFeatures[i].AddRenderPasses(this, ref renderingData);
|
|
|
|
EnqueuePass(m_RenderOpaqueForwardPass);
|
|
EnqueuePass(m_DrawSkyboxPass);
|
|
EnqueuePass(m_RenderTransparentForwardPass);
|
|
return;
|
|
}
|
|
|
|
bool mainLightShadows = m_MainLightShadowCasterPass.Setup(ref renderingData);
|
|
bool additionalLightShadows = m_AdditionalLightsShadowCasterPass.Setup(ref renderingData);
|
|
bool resolveShadowsInScreenSpace = mainLightShadows && renderingData.shadowData.requiresScreenSpaceShadowResolve;
|
|
|
|
// Depth prepass is generated in the following cases:
|
|
// - We resolve shadows in screen space
|
|
// - Scene view camera always requires a depth texture. We do a depth pre-pass to simplify it and it shouldn't matter much for editor.
|
|
// - If game or offscreen camera requires it we check if we can copy the depth from the rendering opaques pass and use that instead.
|
|
bool requiresDepthPrepass = renderingData.cameraData.isSceneViewCamera ||
|
|
(cameraData.requiresDepthTexture && (!CanCopyDepth(ref renderingData.cameraData)));
|
|
requiresDepthPrepass |= resolveShadowsInScreenSpace;
|
|
|
|
// TODO: There's an issue in multiview and depth copy pass. Atm forcing a depth prepass on XR until
|
|
// we have a proper fix.
|
|
if (cameraData.isStereoEnabled && cameraData.requiresDepthTexture)
|
|
requiresDepthPrepass = true;
|
|
|
|
bool createColorTexture = RequiresIntermediateColorTexture(ref renderingData, cameraTargetDescriptor)
|
|
|| rendererFeatures.Count != 0;
|
|
|
|
// If camera requires depth and there's no depth pre-pass we create a depth texture that can be read
|
|
// later by effect requiring it.
|
|
bool createDepthTexture = cameraData.requiresDepthTexture && !requiresDepthPrepass;
|
|
bool postProcessEnabled = cameraData.postProcessEnabled;
|
|
|
|
m_ActiveCameraColorAttachment = (createColorTexture) ? m_CameraColorAttachment : RenderTargetHandle.CameraTarget;
|
|
m_ActiveCameraDepthAttachment = (createDepthTexture) ? m_CameraDepthAttachment : RenderTargetHandle.CameraTarget;
|
|
bool intermediateRenderTexture = createColorTexture || createDepthTexture;
|
|
|
|
if (intermediateRenderTexture)
|
|
CreateCameraRenderTarget(context, ref cameraData);
|
|
|
|
ConfigureCameraTarget(m_ActiveCameraColorAttachment.Identifier(), m_ActiveCameraDepthAttachment.Identifier());
|
|
|
|
// if rendering to intermediate render texture we don't have to create msaa backbuffer
|
|
int backbufferMsaaSamples = (intermediateRenderTexture) ? 1 : cameraTargetDescriptor.msaaSamples;
|
|
|
|
if (Camera.main == camera && camera.cameraType == CameraType.Game && camera.targetTexture == null)
|
|
SetupBackbufferFormat(backbufferMsaaSamples, renderingData.cameraData.isStereoEnabled);
|
|
|
|
for (int i = 0; i < rendererFeatures.Count; ++i)
|
|
{
|
|
rendererFeatures[i].AddRenderPasses(this, ref renderingData);
|
|
}
|
|
|
|
int count = activeRenderPassQueue.Count;
|
|
for (int i = count - 1; i >= 0; i--)
|
|
{
|
|
if(activeRenderPassQueue[i] == null)
|
|
activeRenderPassQueue.RemoveAt(i);
|
|
}
|
|
bool hasAfterRendering = activeRenderPassQueue.Find(x => x.renderPassEvent == RenderPassEvent.AfterRendering) != null;
|
|
|
|
if (mainLightShadows)
|
|
EnqueuePass(m_MainLightShadowCasterPass);
|
|
|
|
if (additionalLightShadows)
|
|
EnqueuePass(m_AdditionalLightsShadowCasterPass);
|
|
|
|
if (requiresDepthPrepass)
|
|
{
|
|
m_DepthPrepass.Setup(cameraTargetDescriptor, m_DepthTexture);
|
|
EnqueuePass(m_DepthPrepass);
|
|
}
|
|
|
|
if (resolveShadowsInScreenSpace)
|
|
{
|
|
m_ScreenSpaceShadowResolvePass.Setup(cameraTargetDescriptor);
|
|
EnqueuePass(m_ScreenSpaceShadowResolvePass);
|
|
}
|
|
|
|
if (postProcessEnabled)
|
|
{
|
|
m_ColorGradingLutPass.Setup(m_ColorGradingLut);
|
|
EnqueuePass(m_ColorGradingLutPass);
|
|
}
|
|
|
|
EnqueuePass(m_RenderOpaqueForwardPass);
|
|
|
|
if (camera.clearFlags == CameraClearFlags.Skybox && RenderSettings.skybox != null)
|
|
EnqueuePass(m_DrawSkyboxPass);
|
|
|
|
// If a depth texture was created we necessarily need to copy it, otherwise we could have render it to a renderbuffer
|
|
if (createDepthTexture)
|
|
{
|
|
m_CopyDepthPass.Setup(m_ActiveCameraDepthAttachment, m_DepthTexture);
|
|
EnqueuePass(m_CopyDepthPass);
|
|
}
|
|
|
|
if (renderingData.cameraData.requiresOpaqueTexture)
|
|
{
|
|
// TODO: Downsampling method should be store in the renderer isntead of in the asset.
|
|
// We need to migrate this data to renderer. For now, we query the method in the active asset.
|
|
Downsampling downsamplingMethod = UniversalRenderPipeline.asset.opaqueDownsampling;
|
|
m_CopyColorPass.Setup(m_ActiveCameraColorAttachment.Identifier(), m_OpaqueColor, downsamplingMethod);
|
|
EnqueuePass(m_CopyColorPass);
|
|
}
|
|
|
|
EnqueuePass(m_RenderTransparentForwardPass);
|
|
EnqueuePass(m_OnRenderObjectCallbackPass);
|
|
|
|
bool afterRenderExists = renderingData.cameraData.captureActions != null ||
|
|
hasAfterRendering;
|
|
|
|
bool requiresFinalPostProcessPass = postProcessEnabled &&
|
|
renderingData.cameraData.antialiasing == AntialiasingMode.FastApproximateAntialiasing;
|
|
|
|
// if we have additional filters
|
|
// we need to stay in a RT
|
|
if (afterRenderExists)
|
|
{
|
|
// perform post with src / dest the same
|
|
if (postProcessEnabled)
|
|
{
|
|
m_PostProcessPass.Setup(cameraTargetDescriptor, m_ActiveCameraColorAttachment, m_AfterPostProcessColor, m_ActiveCameraDepthAttachment, m_ColorGradingLut);
|
|
EnqueuePass(m_PostProcessPass);
|
|
}
|
|
|
|
//now blit into the final target
|
|
if (m_ActiveCameraColorAttachment != RenderTargetHandle.CameraTarget)
|
|
{
|
|
if (renderingData.cameraData.captureActions != null)
|
|
{
|
|
m_CapturePass.Setup(m_ActiveCameraColorAttachment);
|
|
EnqueuePass(m_CapturePass);
|
|
}
|
|
|
|
if (requiresFinalPostProcessPass)
|
|
{
|
|
m_FinalPostProcessPass.SetupFinalPass(m_ActiveCameraColorAttachment);
|
|
EnqueuePass(m_FinalPostProcessPass);
|
|
}
|
|
else
|
|
{
|
|
m_FinalBlitPass.Setup(cameraTargetDescriptor, m_ActiveCameraColorAttachment);
|
|
EnqueuePass(m_FinalBlitPass);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (postProcessEnabled)
|
|
{
|
|
if (requiresFinalPostProcessPass)
|
|
{
|
|
m_PostProcessPass.Setup(cameraTargetDescriptor, m_ActiveCameraColorAttachment, m_AfterPostProcessColor, m_ActiveCameraDepthAttachment, m_ColorGradingLut);
|
|
EnqueuePass(m_PostProcessPass);
|
|
m_FinalPostProcessPass.SetupFinalPass(m_AfterPostProcessColor);
|
|
EnqueuePass(m_FinalPostProcessPass);
|
|
}
|
|
else
|
|
{
|
|
m_PostProcessPass.Setup(cameraTargetDescriptor, m_ActiveCameraColorAttachment, RenderTargetHandle.CameraTarget, m_ActiveCameraDepthAttachment, m_ColorGradingLut);
|
|
EnqueuePass(m_PostProcessPass);
|
|
}
|
|
}
|
|
else if (m_ActiveCameraColorAttachment != RenderTargetHandle.CameraTarget)
|
|
{
|
|
m_FinalBlitPass.Setup(cameraTargetDescriptor, m_ActiveCameraColorAttachment);
|
|
EnqueuePass(m_FinalBlitPass);
|
|
}
|
|
}
|
|
|
|
#if UNITY_EDITOR
|
|
if (renderingData.cameraData.isSceneViewCamera)
|
|
{
|
|
m_SceneViewDepthCopyPass.Setup(m_DepthTexture);
|
|
EnqueuePass(m_SceneViewDepthCopyPass);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
public override void SetupLights(ScriptableRenderContext context, ref RenderingData renderingData)
|
|
{
|
|
m_ForwardLights.Setup(context, ref renderingData);
|
|
}
|
|
|
|
public override void SetupCullingParameters(ref ScriptableCullingParameters cullingParameters,
|
|
ref CameraData cameraData)
|
|
{
|
|
Camera camera = cameraData.camera;
|
|
// TODO: PerObjectCulling also affect reflection probes. Enabling it for now.
|
|
// if (asset.additionalLightsRenderingMode == LightRenderingMode.Disabled ||
|
|
// asset.maxAdditionalLightsCount == 0)
|
|
// {
|
|
// cullingParameters.cullingOptions |= CullingOptions.DisablePerObjectCulling;
|
|
// }
|
|
|
|
cullingParameters.shadowDistance = Mathf.Min(cameraData.maxShadowDistance, camera.farClipPlane);
|
|
}
|
|
|
|
public override void FinishRendering(CommandBuffer cmd)
|
|
{
|
|
if (m_ActiveCameraColorAttachment != RenderTargetHandle.CameraTarget)
|
|
cmd.ReleaseTemporaryRT(m_ActiveCameraColorAttachment.id);
|
|
|
|
if (m_ActiveCameraDepthAttachment != RenderTargetHandle.CameraTarget)
|
|
cmd.ReleaseTemporaryRT(m_ActiveCameraDepthAttachment.id);
|
|
}
|
|
|
|
void CreateCameraRenderTarget(ScriptableRenderContext context, ref CameraData cameraData)
|
|
{
|
|
CommandBuffer cmd = CommandBufferPool.Get(k_CreateCameraTextures);
|
|
var descriptor = cameraData.cameraTargetDescriptor;
|
|
int msaaSamples = descriptor.msaaSamples;
|
|
if (m_ActiveCameraColorAttachment != RenderTargetHandle.CameraTarget)
|
|
{
|
|
bool useDepthRenderBuffer = m_ActiveCameraDepthAttachment == RenderTargetHandle.CameraTarget;
|
|
var colorDescriptor = descriptor;
|
|
colorDescriptor.depthBufferBits = (useDepthRenderBuffer) ? k_DepthStencilBufferBits : 0;
|
|
cmd.GetTemporaryRT(m_ActiveCameraColorAttachment.id, colorDescriptor, FilterMode.Bilinear);
|
|
}
|
|
|
|
if (m_ActiveCameraDepthAttachment != RenderTargetHandle.CameraTarget)
|
|
{
|
|
var depthDescriptor = descriptor;
|
|
depthDescriptor.colorFormat = RenderTextureFormat.Depth;
|
|
depthDescriptor.depthBufferBits = k_DepthStencilBufferBits;
|
|
depthDescriptor.bindMS = msaaSamples > 1 && !SystemInfo.supportsMultisampleAutoResolve && (SystemInfo.supportsMultisampledTextures != 0);
|
|
cmd.GetTemporaryRT(m_ActiveCameraDepthAttachment.id, depthDescriptor, FilterMode.Point);
|
|
}
|
|
|
|
context.ExecuteCommandBuffer(cmd);
|
|
CommandBufferPool.Release(cmd);
|
|
}
|
|
|
|
void SetupBackbufferFormat(int msaaSamples, bool stereo)
|
|
{
|
|
#if ENABLE_VR
|
|
bool msaaSampleCountHasChanged = false;
|
|
int currentQualitySettingsSampleCount = QualitySettings.antiAliasing;
|
|
if (currentQualitySettingsSampleCount != msaaSamples &&
|
|
!(currentQualitySettingsSampleCount == 0 && msaaSamples == 1))
|
|
{
|
|
msaaSampleCountHasChanged = true;
|
|
}
|
|
|
|
// There's no exposed API to control how a backbuffer is created with MSAA
|
|
// By settings antiAliasing we match what the amount of samples in camera data with backbuffer
|
|
// We only do this for the main camera and this only takes effect in the beginning of next frame.
|
|
// This settings should not be changed on a frame basis so that's fine.
|
|
QualitySettings.antiAliasing = msaaSamples;
|
|
|
|
if (stereo && msaaSampleCountHasChanged)
|
|
XR.XRDevice.UpdateEyeTextureMSAASetting();
|
|
#else
|
|
QualitySettings.antiAliasing = msaaSamples;
|
|
#endif
|
|
}
|
|
|
|
bool RequiresIntermediateColorTexture(ref RenderingData renderingData, RenderTextureDescriptor baseDescriptor)
|
|
{
|
|
ref CameraData cameraData = ref renderingData.cameraData;
|
|
int msaaSamples = cameraData.cameraTargetDescriptor.msaaSamples;
|
|
bool isStereoEnabled = renderingData.cameraData.isStereoEnabled;
|
|
bool isScaledRender = !Mathf.Approximately(cameraData.renderScale, 1.0f);
|
|
bool isCompatibleBackbufferTextureDimension = baseDescriptor.dimension == TextureDimension.Tex2D;
|
|
bool requiresExplicitMsaaResolve = msaaSamples > 1 && !SystemInfo.supportsMultisampleAutoResolve;
|
|
bool isOffscreenRender = cameraData.camera.targetTexture != null && !cameraData.isSceneViewCamera;
|
|
bool isCapturing = cameraData.captureActions != null;
|
|
|
|
#if ENABLE_VR
|
|
if (isStereoEnabled)
|
|
isCompatibleBackbufferTextureDimension = UnityEngine.XR.XRSettings.deviceEyeTextureDimension == baseDescriptor.dimension;
|
|
#endif//ENABLE_VR
|
|
|
|
bool requiresBlitForOffscreenCamera = cameraData.postProcessEnabled || cameraData.requiresOpaqueTexture || requiresExplicitMsaaResolve;
|
|
if (isOffscreenRender)
|
|
return requiresBlitForOffscreenCamera;
|
|
|
|
return requiresBlitForOffscreenCamera || cameraData.isSceneViewCamera || isScaledRender || cameraData.isHdrEnabled ||
|
|
!isCompatibleBackbufferTextureDimension || !cameraData.isDefaultViewport || isCapturing || Display.main.requiresBlitToBackbuffer
|
|
|| (renderingData.killAlphaInFinalBlit && !isStereoEnabled);
|
|
}
|
|
|
|
bool CanCopyDepth(ref CameraData cameraData)
|
|
{
|
|
bool msaaEnabledForCamera = cameraData.cameraTargetDescriptor.msaaSamples > 1;
|
|
bool supportsTextureCopy = SystemInfo.copyTextureSupport != CopyTextureSupport.None;
|
|
bool supportsDepthTarget = RenderingUtils.SupportsRenderTextureFormat(RenderTextureFormat.Depth);
|
|
bool supportsDepthCopy = !msaaEnabledForCamera && (supportsDepthTarget || supportsTextureCopy);
|
|
|
|
// TODO: We don't have support to highp Texture2DMS currently and this breaks depth precision.
|
|
// currently disabling it until shader changes kick in.
|
|
//bool msaaDepthResolve = msaaEnabledForCamera && SystemInfo.supportsMultisampledTextures != 0;
|
|
bool msaaDepthResolve = false;
|
|
return supportsDepthCopy || msaaDepthResolve;
|
|
}
|
|
}
|
|
}
|