diff --git a/Packages/com.unity.postprocessing@3.2.2/PostProcessing/Runtime/PostProcessLayer.cs b/Packages/com.unity.postprocessing@3.2.2/PostProcessing/Runtime/PostProcessLayer.cs index 6576021..8735f41 100644 --- a/Packages/com.unity.postprocessing@3.2.2/PostProcessing/Runtime/PostProcessLayer.cs +++ b/Packages/com.unity.postprocessing@3.2.2/PostProcessing/Runtime/PostProcessLayer.cs @@ -292,6 +292,9 @@ namespace UnityEngine.Rendering.PostProcessing if (!finalBlitToCameraTarget && m_CurrentContext.IsSuperResolutionActive()) { + // Set the camera back to its original parameters, so we can output at full display resolution + superResolution.ResetCameraViewport(m_CurrentContext); + // Blit the upscaled image to the backbuffer Graphics.Blit(m_upscaledOutput, dst); m_upscaledOutput.Release(); @@ -762,7 +765,7 @@ namespace UnityEngine.Rendering.PostProcessing return; // Set the camera back to its original parameters, so we can output at full display resolution - if (m_CurrentContext.IsSuperResolutionActive()) + if (finalBlitToCameraTarget && m_CurrentContext.IsSuperResolutionActive()) { superResolution.ResetCameraViewport(m_CurrentContext); }