diff --git a/Packages/com.unity.render-pipelines.core/Documentation~/render-graph-writing-a-render-pipeline.md b/Packages/com.unity.render-pipelines.core/Documentation~/render-graph-writing-a-render-pipeline.md index 4c1f399ae7f..4856c311442 100644 --- a/Packages/com.unity.render-pipelines.core/Documentation~/render-graph-writing-a-render-pipeline.md +++ b/Packages/com.unity.render-pipelines.core/Documentation~/render-graph-writing-a-render-pipeline.md @@ -7,6 +7,7 @@ This page covers the process of how to use the RenderGraph API to write a render To begin, your render pipeline needs to maintain at least one instance of [RenderGraph](../api/UnityEngine.Rendering.RenderGraphModule.RenderGraph.html). This is the main entry point for the API. You can use more than one instance of a render graph, but be aware that Unity does not share resources across `RenderGraph` instances so for optimal memory usage, only use one instance. ```c# +using UnityEngine.Rendering; using UnityEngine.Rendering.RenderGraphModule; public class MyRenderPipeline : RenderPipeline @@ -21,8 +22,11 @@ public class MyRenderPipeline : RenderPipeline void CleanupRenderGraph() { m_RenderGraph.Cleanup(); - m_RenderGraph = null; + m_RenderGraph = null; } + + ... + } ``` diff --git a/Packages/com.unity.render-pipelines.core/Editor/Settings/PropertyDrawers/DefaultVolumeProfileSettingsPropertyDrawer.cs b/Packages/com.unity.render-pipelines.core/Editor/Settings/PropertyDrawers/DefaultVolumeProfileSettingsPropertyDrawer.cs index f25f8af4faa..b030fc73132 100644 --- a/Packages/com.unity.render-pipelines.core/Editor/Settings/PropertyDrawers/DefaultVolumeProfileSettingsPropertyDrawer.cs +++ b/Packages/com.unity.render-pipelines.core/Editor/Settings/PropertyDrawers/DefaultVolumeProfileSettingsPropertyDrawer.cs @@ -88,6 +88,9 @@ protected void CreateDefaultVolumeProfileEditor() } m_EditorContainer.Add(s_DefaultVolumeProfileEditor.Create()); m_EditorContainer.Q("volume-override-info-box").text = volumeInfoBoxLabel.text; + + if (m_DefaultVolumeProfileFoldoutExpanded.value) + m_EditorContainer.style.display = DisplayStyle.Flex; } /// @@ -95,11 +98,13 @@ protected void CreateDefaultVolumeProfileEditor() /// protected void DestroyDefaultVolumeProfileEditor() { + m_EditorContainer.style.display = DisplayStyle.None; + m_EditorContainer?.Clear(); + if (s_DefaultVolumeProfileEditor != null) s_DefaultVolumeProfileEditor.Destroy(); s_DefaultVolumeProfileEditor = null; s_DefaultVolumeProfileSerializedProperty = null; - m_EditorContainer?.Clear(); } /// @@ -124,8 +129,6 @@ public abstract class DefaultVolumeProfileSettingsContextMenu.PopulateContextMenu(TSetting setting, PropertyDrawer _, ref GenericMenu menu) { - menu.AddSeparator(""); - bool canCreateNewAsset = RenderPipelineManager.currentPipeline is TRenderPipeline; VolumeProfileUtils.AddVolumeProfileContextMenuItems(ref menu, setting.volumeProfile, diff --git a/Packages/com.unity.render-pipelines.core/Editor/Volume/VolumeProfileUtils.cs b/Packages/com.unity.render-pipelines.core/Editor/Volume/VolumeProfileUtils.cs index 80eadedc7cb..df9d6cc4285 100644 --- a/Packages/com.unity.render-pipelines.core/Editor/Volume/VolumeProfileUtils.cs +++ b/Packages/com.unity.render-pipelines.core/Editor/Volume/VolumeProfileUtils.cs @@ -240,8 +240,6 @@ public static void EnsureAllOverridesForDefaultProfile(VolumeProfile profile, Vo { VolumeManager.instance.OnVolumeProfileChanged(profile); EditorUtility.SetDirty(profile); - AssetDatabase.SaveAssets(); - AssetDatabase.Refresh(); } } diff --git a/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs b/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs index 9381ed5027a..f0474d665bb 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Debug.cs @@ -1089,6 +1089,9 @@ CellInstancedDebugProbes CreateInstancedProbes(Cell cell) if (cell.debugProbes != null) return cell.debugProbes; + if (HasActiveStreamingRequest(cell)) + return null; + int maxSubdiv = GetMaxSubdivision() - 1; if (!cell.data.bricks.IsCreated || cell.data.bricks.Length == 0 || !cell.data.probePositions.IsCreated || !cell.loaded) diff --git a/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Streaming.cs b/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Streaming.cs index 9f2a0d8d0f1..abb57ee39f4 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Streaming.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/Lighting/ProbeVolume/ProbeReferenceVolume.Streaming.cs @@ -1450,6 +1450,11 @@ void UpdateDiskStreaming(CommandBuffer cmd) } } + bool HasActiveStreamingRequest(Cell cell) + { + return diskStreamingEnabled && m_ActiveStreamingRequests.Exists(x => x.cell == cell); + } + [Conditional("UNITY_EDITOR")] [Conditional("DEVELOPMENT_BUILD")] void LogStreaming(string log) diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/CompilerContextData.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/CompilerContextData.cs index 9c0e78b479d..324109f60b7 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/CompilerContextData.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/CompilerContextData.cs @@ -98,7 +98,7 @@ public ref ResourceVersionedData VersionedResourceData(ResourceHandle h) [MethodImpl(MethodImplOptions.AggressiveInlining)] public ReadOnlySpan Readers(ResourceHandle h) { - int firstReader = ResourcesData.IndexReader(h, 0); + int firstReader = resources.IndexReader(h, 0); int numReaders = resources[h].numReaders; return resources.readerData[h.iType].MakeReadOnlySpan(firstReader, numReaders); } @@ -114,7 +114,7 @@ public ref ResourceReaderData ResourceReader(ResourceHandle h, int i) throw new Exception("Invalid reader id"); } #endif - return ref resources.readerData[h.iType].ElementAt(ResourcesData.IndexReader(h, 0) + i); + return ref resources.readerData[h.iType].ElementAt(resources.IndexReader(h, 0) + i); } // Data per graph level renderpass diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.Debug.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.Debug.cs index 7e8520dd24f..e05b1f418f8 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.Debug.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.Debug.cs @@ -351,7 +351,7 @@ internal void GenerateNativeCompilerDebugData(ref RenderGraph.DebugData debugDat var numReaders = outputDataVersioned.numReaders; for (var i = 0; i < numReaders; ++i) { - var depIdx = ResourcesData.IndexReader(output.resource, i); + var depIdx = ctx.resources.IndexReader(output.resource, i); ref var dep = ref ctx.resources.readerData[output.resource.iType].ElementAt(depIdx); var outputDependencyPass = ctx.passData[dep.passId]; diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.cs index 57bc3c19b51..86417959ea4 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/NativePassCompiler.cs @@ -594,7 +594,7 @@ void FindResourceUsageRanges() var numReaders = pointToVer.numReaders; for (var i = 0; i < numReaders; ++i) { - var depIdx = ResourcesData.IndexReader(outputResource, i); + var depIdx = ctx.resources.IndexReader(outputResource, i); ref var dep = ref ctx.resources.readerData[outputResource.iType].ElementAt(depIdx); ref var depPass = ref ctx.passData.ElementAt(dep.passId); if (pass.asyncCompute != depPass.asyncCompute) diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/ResourcesData.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/ResourcesData.cs index a6e6e1f1245..fba9b1f2320 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/ResourcesData.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/Compiler/ResourcesData.cs @@ -146,14 +146,14 @@ public void SetWritingPass(CompilerContextData ctx, ResourceHandle h, int passId public void RegisterReadingPass(CompilerContextData ctx, ResourceHandle h, int passId, int index) { #if DEVELOPMENT_BUILD || UNITY_EDITOR - if (numReaders >= ResourcesData.MaxReaders) + if (numReaders >= ctx.resources.MaxReaders) { string passName = ctx.GetPassName(passId); string resourceName = ctx.GetResourceName(h); - throw new Exception($"Maximum '{ResourcesData.MaxReaders}' passes can use a single graph output as input. Pass {passName} is trying to read {resourceName}."); + throw new Exception($"Maximum '{ctx.resources.MaxReaders}' passes can use a single graph output as input. Pass {passName} is trying to read {resourceName}."); } #endif - ctx.resources.readerData[h.iType][ResourcesData.IndexReader(h, numReaders)] = new ResourceReaderData + ctx.resources.readerData[h.iType][ctx.resources.IndexReader(h, numReaders)] = new ResourceReaderData { passId = passId, inputSlot = index @@ -167,13 +167,13 @@ public void RemoveReadingPass(CompilerContextData ctx, ResourceHandle h, int pas { for (int r = 0; r < numReaders;) { - ref var reader = ref ctx.resources.readerData[h.iType].ElementAt(ResourcesData.IndexReader(h, r)); + ref var reader = ref ctx.resources.readerData[h.iType].ElementAt(ctx.resources.IndexReader(h, r)); if (reader.passId == passId) { // It should be removed, switch with the end of the list if we're not already at the end of it if (r < numReaders - 1) { - reader = ctx.resources.readerData[h.iType][ResourcesData.IndexReader(h, numReaders - 1)]; + reader = ctx.resources.readerData[h.iType][ctx.resources.IndexReader(h, numReaders - 1)]; } numReaders--; @@ -193,8 +193,9 @@ internal class ResourcesData public NativeList[] unversionedData; // Flattened fixed size array storing info per resource id shared between all versions. public NativeList[] versionedData; // Flattened fixed size array storing up to MaxVersions versions per resource id. public NativeList[] readerData; // Flattened fixed size array storing up to MaxReaders per resource id per version. - public const int MaxVersions = 20; // A quite arbitrary limit should be enough for most graphs. Increasing it shouldn't be a problem but will use more memory as these lists use a fixed size upfront allocation. - public const int MaxReaders = 100; // A quite arbitrary limit should be enough for most graphs. Increasing it shouldn't be a problem but will use more memory as these lists use a fixed size upfront allocation. + + public int MaxVersions; + public int MaxReaders; public DynamicArray[] resourceNames; @@ -229,6 +230,9 @@ public void Clear() public void Initialize(RenderGraphResourceRegistry resources) { + uint maxReaders = 0; + uint maxWriters = 0; + for (int t = 0; t < (int)RenderGraphResourceType.Count; t++) { RenderGraphResourceType resourceType = (RenderGraphResourceType) t; @@ -287,8 +291,15 @@ public void Initialize(RenderGraphResourceRegistry resources) default: throw new Exception("Unsupported resource type: " + t); } + + maxReaders = Math.Max(maxReaders, rll.readCount); + maxWriters = Math.Max(maxWriters, rll.writeCount); } + // The first resource is a null resource, so we need to add 1 to the count. + MaxReaders = (int)maxReaders + 1; + MaxVersions = (int)maxWriters + 1; + // Clear the other caching structures, they will be filled later versionedData[t].Resize(MaxVersions * numResources, NativeArrayOptions.ClearMemory); readerData[t].Resize(MaxVersions * MaxReaders * numResources, NativeArrayOptions.ClearMemory); @@ -297,7 +308,7 @@ public void Initialize(RenderGraphResourceRegistry resources) // Flatten array index [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static int Index(ResourceHandle h) + public int Index(ResourceHandle h) { #if UNITY_EDITOR // Hot path if (h.version < 0 || h.version >= MaxVersions) @@ -308,7 +319,7 @@ public static int Index(ResourceHandle h) // Flatten array index [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static int IndexReader(ResourceHandle h, int readerID) + public int IndexReader(ResourceHandle h, int readerID) { #if UNITY_EDITOR // Hot path if (h.version < 0 || h.version >= MaxVersions) diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphBuilders.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphBuilders.cs index 80a65179171..8d68e74d2e6 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphBuilders.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphBuilders.cs @@ -219,6 +219,7 @@ private ResourceHandle UseResource(in ResourceHandle handle, AccessFlags flags, } m_RenderPass.AddResourceRead(versioned); + m_Resources.IncrementReadCount(handle); if ((flags & AccessFlags.Read) == 0) { @@ -232,6 +233,7 @@ private ResourceHandle UseResource(in ResourceHandle handle, AccessFlags flags, if ((flags & AccessFlags.Read) != 0) { m_RenderPass.AddResourceRead(m_Resources.GetZeroVersionedHandle(handle)); + m_Resources.IncrementReadCount(handle); } } diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphPass.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphPass.cs index 093e6d82437..c2d1f933887 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphPass.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphPass.cs @@ -96,6 +96,10 @@ public void Clear() colorBufferMaxIndex = -1; fragmentInputMaxIndex = -1; randomAccessResourceMaxIndex = -1; + + // We do not need to clear colorBufferAccess and fragmentInputAccess as we have the colorBufferMaxIndex and fragmentInputMaxIndex + // which are reset above so we only clear depthAccess here. + depthAccess = default(TextureAccess); } // Check if the pass has any render targets set-up diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResourceRegistry.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResourceRegistry.cs index c1aa76d80c7..b0bc2ef5613 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResourceRegistry.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResourceRegistry.cs @@ -349,6 +349,12 @@ internal void IncrementWriteCount(in ResourceHandle res) m_RenderGraphResources[res.iType].resourceArray[res.index].IncrementWriteCount(); } + internal void IncrementReadCount(in ResourceHandle res) + { + CheckHandleValidity(res); + m_RenderGraphResources[res.iType].resourceArray[res.index].IncrementReadCount(); + } + internal void NewVersion(in ResourceHandle res) { CheckHandleValidity(res); diff --git a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResources.cs b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResources.cs index 5df755d4fe5..df4c4ccc562 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResources.cs +++ b/Packages/com.unity.render-pipelines.core/Runtime/RenderGraph/RenderGraphResources.cs @@ -128,6 +128,7 @@ class IRenderGraphResource public bool requestFallBack; public bool forceRelease; public uint writeCount; + public uint readCount; public int cachedHash; public int transientPassIndex; public int sharedResourceLastFrameUsed; @@ -145,6 +146,7 @@ public virtual void Reset(IRenderGraphResourcePool _ = null) requestFallBack = false; forceRelease = false; writeCount = 0; + readCount = 0; version = 0; } @@ -166,6 +168,13 @@ public virtual void IncrementWriteCount() writeCount++; } + // readCount is currently not used in the HDRP Compiler. + [MethodImpl(MethodImplOptions.AggressiveInlining)] + public virtual void IncrementReadCount() + { + readCount++; + } + [MethodImpl(MethodImplOptions.AggressiveInlining)] public virtual int NewVersion() { diff --git a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpPreTaa.compute b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpPreTaa.compute index f83541c3cd4..5c89ff78bfc 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpPreTaa.compute +++ b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpPreTaa.compute @@ -7,7 +7,7 @@ #pragma multi_compile _ DISABLE_TEXTURE2D_X_ARRAY -#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch +#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch glcore #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl" diff --git a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpSetup.compute b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpSetup.compute index 4f6de533a3a..4d98f8bb130 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpSetup.compute +++ b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpSetup.compute @@ -14,7 +14,7 @@ #pragma multi_compile _ DISABLE_TEXTURE2D_X_ARRAY -#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch +#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch glcore #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl" @@ -395,7 +395,14 @@ StpF2 StpPatDatMotH(StpW2 o) { return LOAD_TEXTURE2D_X_LOD(_StpInputMotion, o, 0 StpH3 StpPatDatColH(StpW2 o) { return (StpH3)LOAD_TEXTURE2D_X_LOD(_StpInputColor, o, 0).rgb; } StpF1 StpPatDatZH(StpW2 o) { return LOAD_TEXTURE2D_X_LOD(_StpInputDepth, o, 0).x; } // This provides a place to convert Z from depth to linear if not inlined and actually loaded. -StpF1 StpPatFixZH(StpF1 z) { return 1.0 / (STP_ZBUFFER_PARAMS_Z * z + STP_ZBUFFER_PARAMS_W); } +StpF1 StpPatFixZH(StpF1 z) +{ +#if !UNITY_REVERSED_Z + // Reverse Z if necessary as STP expects reversed Z input + z = 1.0 - z; +#endif + return 1.0 / (STP_ZBUFFER_PARAMS_Z * z + STP_ZBUFFER_PARAMS_W); +} StpU1 StpPatDatRH(StpW2 o) { #if defined(ENABLE_STENCIL_RESPONSIVE) return GetStencilValue(LOAD_TEXTURE2D_X_LOD(_StpInputStencil, o, 0).xy); @@ -432,7 +439,14 @@ StpF2 StpPatDatMotF(StpMU2 o) { return LOAD_TEXTURE2D_X_LOD(_StpInputMotion, o, StpMF3 StpPatDatColF(StpMU2 o) { return (StpMF3)LOAD_TEXTURE2D_X_LOD(_StpInputColor, o, 0).rgb; } StpF1 StpPatDatZF(StpMU2 o) { return LOAD_TEXTURE2D_X_LOD(_StpInputDepth, o, 0).x; } // This provides a place to convert Z from depth to linear if not inlined and actually loaded. -StpF1 StpPatFixZF(StpF1 z) { return 1.0 / (STP_ZBUFFER_PARAMS_Z * z + STP_ZBUFFER_PARAMS_W); } +StpF1 StpPatFixZF(StpF1 z) +{ +#if !UNITY_REVERSED_Z + // Reverse Z if necessary as STP expects reversed Z input + z = 1.0 - z; +#endif + return 1.0 / (STP_ZBUFFER_PARAMS_Z * z + STP_ZBUFFER_PARAMS_W); +} StpU1 StpPatDatRF(StpMU2 o) { #if defined(ENABLE_STENCIL_RESPONSIVE) return GetStencilValue(LOAD_TEXTURE2D_X_LOD(_StpInputStencil, o, 0).xy); diff --git a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpTaa.compute b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpTaa.compute index 55a23e8db0d..c9904044acc 100644 --- a/Packages/com.unity.render-pipelines.core/Runtime/STP/StpTaa.compute +++ b/Packages/com.unity.render-pipelines.core/Runtime/STP/StpTaa.compute @@ -7,7 +7,7 @@ #pragma multi_compile _ DISABLE_TEXTURE2D_X_ARRAY -#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch +#pragma only_renderers d3d11 playstation xboxone xboxseries vulkan metal switch glcore #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Common.hlsl" #include "Packages/com.unity.render-pipelines.core/ShaderLibrary/Color.hlsl" diff --git a/Packages/com.unity.render-pipelines.core/Tests/Editor/NativePassCompilerRenderGraphTests.cs b/Packages/com.unity.render-pipelines.core/Tests/Editor/NativePassCompilerRenderGraphTests.cs index 6664980c909..3ad5f36cfb1 100644 --- a/Packages/com.unity.render-pipelines.core/Tests/Editor/NativePassCompilerRenderGraphTests.cs +++ b/Packages/com.unity.render-pipelines.core/Tests/Editor/NativePassCompilerRenderGraphTests.cs @@ -785,6 +785,126 @@ public void FencesWork() Assert.False(passData[3].insertGraphicsFence); } + [Test] + public void MaxReadersAndMaxVersionsAreCorrectForBuffers() + { + var g = AllocateRenderGraph(); + var rendertargets = ImportAndCreateBuffers(g); + + var desc = new BufferDesc(1024, 16); + var buffer = g.CreateBuffer(desc); + var buffer2 = g.CreateBuffer(desc); + + // Render something to extra 0 and write uav + using (var builder = g.AddRasterRenderPass("TestPass0", out var passData)) + { + builder.UseBufferRandomAccess(buffer, 0, AccessFlags.Write); + builder.UseBufferRandomAccess(buffer2, 1, AccessFlags.Write); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + // Render extra bits to 0 reading from the uav + using (var builder = g.AddRasterRenderPass("TestPass1", out var passData)) + { + builder.UseBuffer(buffer, AccessFlags.Read); + builder.UseBufferRandomAccess(buffer2, 1, AccessFlags.ReadWrite); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + var result = g.CompileNativeRenderGraph(g.ComputeGraphHash()); + + // The resource with the biggest MaxReaders is buffer2: + // 1 implicit read (TestPass0) + 1 explicit read (TestPass1) + 1 for the offset. + Assert.AreEqual(result.contextData.resources.MaxReaders, 3); + + // The resource with the biggest MaxVersion is buffer2: + // 1 explicit write (TestPass0) + 1 explicit readwrite (TestPass1) + 1 for the offset + Assert.AreEqual(result.contextData.resources.MaxVersions, 3); + } + + [Test] + public void MaxReadersAndMaxVersionsAreCorrectForTextures() + { + var g = AllocateRenderGraph(); + var rendertargets = ImportAndCreateBuffers(g); + + // Render something to extra 0 and write uav + using (var builder = g.AddRasterRenderPass("TestPass0", out var passData)) + { + builder.SetRenderAttachmentDepth(rendertargets.depthBuffer, AccessFlags.Write); + builder.UseTexture(rendertargets.extraBuffers[0], AccessFlags.Write); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + // Render extra bits to 0 reading from the uav + using (var builder = g.AddRasterRenderPass("TestPass1", out var passData)) + { + builder.SetRenderAttachmentDepth(rendertargets.depthBuffer, AccessFlags.Read); + builder.UseTexture(rendertargets.extraBuffers[0], AccessFlags.ReadWrite); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + // Render extra bits to 0 reading from the uav + using (var builder = g.AddRasterRenderPass("TestPass2", out var passData)) + { + builder.AllowPassCulling(false); + builder.UseTexture(rendertargets.extraBuffers[0], AccessFlags.Read); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + var result = g.CompileNativeRenderGraph(g.ComputeGraphHash()); + + // Resources with the biggest MaxReaders are extraBuffers[0] and depthBuffer (both being equal): + // 1 implicit read (TestPass0) + 2 explicit read (TestPass1 & TestPass2) + 1 for the offset + Assert.AreEqual(result.contextData.resources.MaxReaders, 4); + + // The resource with the biggest MaxVersion is extraBuffers[0]: + // 1 explicit write (TestPass0) + 1 explicit read-write (TestPass1) + 1 for the offset + Assert.AreEqual(result.contextData.resources.MaxVersions, 3); + } + + [Test] + public void MaxReadersAndMaxVersionsAreCorrectForBuffersMultiplePasses() + { + var g = AllocateRenderGraph(); + var rendertargets = ImportAndCreateBuffers(g); + + var desc = new BufferDesc(1024, 16); + var buffer = g.CreateBuffer(desc); + var buffer2 = g.CreateBuffer(desc); + + int indexName = 0; + + for (int i = 0; i < 5; ++i) + { + // Render something to extra 0 and write uav + using (var builder = g.AddRasterRenderPass("TestPass" + indexName++, out var passData)) + { + builder.UseBufferRandomAccess(buffer, 0, AccessFlags.Write); + builder.UseBufferRandomAccess(buffer2, 1, AccessFlags.Write); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + + // Render extra bits to 0 reading from the uav + using (var builder = g.AddRasterRenderPass("TestPass" + indexName++, out var passData)) + { + builder.UseBuffer(buffer, AccessFlags.Read); + builder.UseBufferRandomAccess(buffer2, 1, AccessFlags.ReadWrite); + builder.SetRenderFunc((RenderGraphTestPassData data, RasterGraphContext context) => { }); + } + } + + var result = g.CompileNativeRenderGraph(g.ComputeGraphHash()); + + // The resource with the biggest MaxReaders is buffer2: + // 5 implicit read (TestPass0-2-4-6-8) + 5 explicit read (TestPass1-3-5-7-9) + 1 for the offset. + Assert.AreEqual(result.contextData.resources.MaxReaders, 11); + + // The resource with the biggest MaxVersion is buffer2: + // 5 explicit write (TestPass0-2-4-6-8) + 5 explicit readwrite (TestPass1-3-5-7-9) + 1 for the offset + Assert.AreEqual(result.contextData.resources.MaxVersions, 11); + } + [Test] public void BuffersWork() { diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/AOVs.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/AOVs.md index 249b938a182..651362d7fd7 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/AOVs.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/AOVs.md @@ -42,7 +42,7 @@ You can use AOVs to output the contribution from a selected list of [Lights](Lig ## Custom Pass AOVs You can use AOVs to output the results of [custom passes](Custom-Pass.md). In particular, you can output the cumulative results of all custom passes that are active on every custom pass injection point. This can be useful to output arbitrary information that custom passes compute, such as the Object ID of the Scene GameObjects. -## Rendering Precission +## Rendering precision By default AOVs are rendering at the precision and format selected in the HDRP asset. If the AOVRequest is configured with *SetOverrideRenderFormat* option set to true, then rendering will use the same precision as the user allocated AOV output buffer. ## Scripting API example diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Default-Settings-Window.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Default-Settings-Window.md index e933c76c5d0..9a8889fa9b2 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Default-Settings-Window.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Default-Settings-Window.md @@ -11,8 +11,7 @@ You can also add your own settings. Refer to [Add custom settings](https://docs. | **Property** | **Description** | | --------------------------| ------------------------------------------------------------ | | Shader Variant Log Level | Use the drop-down to select what information HDRP logs about Shader variants when you build your Unity Project. • Disabled: HDRP doesn’t log any Shader variant information.• Only SRP Shaders: Only log Shader variant information for HDRP Shaders.• All Shaders: Log Shader variant information for every Shader type. | -| Export Shader Variants | Controls whether to output shader variant information to a file. | - +| Export Shader Variants | Controls whether to output shader variant information to a file. Unity saves the information to the folder with your project files, in `Temp/graphics-settings-stripping.json` and `Temp/shader-stripping.json`. | ## Custom Post Process Orders @@ -20,9 +19,6 @@ Use this section to select which custom post processing effect HDRP uses in the HDRP provides one list for each post processing injection point. See the [Custom Post Process](Custom-Post-Process.md) documentation for more details. -![](Images/HDRPgs_Custom_PP.png) - - ## Frame Settings (Default Values) The [Frame Settings](Frame-Settings.md) control the rendering passes that Cameras perform at runtime. @@ -48,7 +44,7 @@ You can use the **Volume Profiles** section to assign and edit a [Volume Profile The **Default Volume Profile Asset** (A) references a Volume Profile in the HDRP package folder called `DefaultSettingsVolumeProfile` by default. Below it, you can add [Volume overrides](volume-component.md), and edit their properties. You can assign your own Volume Profile to this property field. Be aware that this property must always reference a Volume Profile. If you assign your own Volume Profile and then delete it, HDRP automatically re-assigns the `DefaultSettingsVolumeProfile` from the HDRP package folder. -The **LookDev Volume Profile Asset** (B) references the Volume Profile HDRP uses in the [LookDev window](test-and-debug-materials-in-different-lighting-conditions-look-dev.md). This Asset works in almost the same way as the Default Volume Profile Asset, except that it overrides [Visual Environment Components](visual-environment-volume-override-reference.md) and sky components.![](Images/HDRPgs_Volume_Profiles.png) +The **LookDev Volume Profile Asset** (B) references the Volume Profile HDRP uses in the [LookDev window](test-and-debug-materials-in-different-lighting-conditions-look-dev.md). This Asset works in almost the same way as the Default Volume Profile Asset, except it overrides [Visual Environment Components](visual-environment-volume-override-reference.md) and sky components. ## Resources diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md index 97a5e5faa2d..0028df44a39 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md @@ -46,7 +46,7 @@ Forward and Deferred rendering both implement the same features, but the quality ## Differences between Forward and Deferred rendering in HDRP -| **Feature** | **Forward Rendering** | **Defferred** | +| **Feature** | **Forward Rendering** | **Deferred** | |---|---|---| | **Normal shadow bias** | HDRP uses the geometric normal (the vertex normal) of the Material for shadow bias, so Forward Rendering produces fewer shadow artifacts. | HDRP uses the pixel normal of the Material for shadow bias, so Deferred Rendering produces more shadow artifacts. | | **Emissive Color** | Ambient Occlusion doesn't affect Emissive Color. | Ambient Occlusion affects Emissive Color due to technical constraints. | diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Frame-Settings.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Frame-Settings.md index c6580132ba0..b9a32c34fa1 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Frame-Settings.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Frame-Settings.md @@ -4,8 +4,6 @@ Frame Settings are settings HDRP uses to render Cameras, real-time, baked, and c You can set the default values for Frame Settings for each of these three individually from within the the [HDRP Graphics settings window](Default-Settings-Window.md). -![](Images/FrameSettings1.png) - To make Cameras and Reflection Probes use their respective default values for Frame Settings, disable the **Custom Frame Settings** checkbox under the **General** settings of Cameras or under **Capture Settings** of Reflection Probes. You can override the default value of a Frame Setting on a per component basis. Enable the **Custom Frame Settings** checkbox to set specific Frame Settings for individual Cameras and Reflection Probes. This exposes the Frame Settings Override which gives you access to the same settings as within the HDRP Global Settings. Edit the settings within the Frame Settings Override to create a Frame Settings profile for an individual component. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/HDRP-Asset.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/HDRP-Asset.md index f4b4934a2eb..dab7fe67b66 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/HDRP-Asset.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/HDRP-Asset.md @@ -62,7 +62,7 @@ These settings control the draw distance and resolution of the decals atlas that | **-- Use Optimal Settings** | Enable the checkbox to make DLSS control the Sharpness and Screen Percentage automatically. | | **-- Sharpness** | Controls how the DLSS upsampler renders edges on the image. More sharpness usually means more contrast and a clearer image but can increase flickering and fireflies. Unity ignores this property if you enable **Use Optimal Settings**. | | **- Dynamic Resolution Type** | Use the drop-down to select the type of dynamic resolution HDRP uses:
• **Software**: This option allocates render targets to accommodate the maximum resolution possible, then rescales the viewport accordingly. This allows the viewport to render at varying resolutions.
• **Hardware**: This option treats the render targets, up until the back buffer, as if they are all the scaled size. This means HDRP clears the render targets faster. | -| **- Upscale Filter** | Use the drop-down to select the filter that HDRP uses for upscaling (unless overridden by user via script). The options are:
• **Catmull-Rom**: A bicubic upsample with 4 taps.
• **Contrast Adaptive Sharpen**: An ultra sharp upsample. This option is not meant for screen percentages less than 50% and still sharpens when you set the screen percentage to 100%. It uses **FidelityFX (CAS) AMD™**.
• **FidelityFX Super Resolution 1.0 AMD™**: A spatial super-resolution technology that leverages cutting-edge algorithms to produce impressive upscaling quality at very fast performance.
• **TAA Upscale**: A temporal anti-aliasing upscaler that uses information from previous frames to produce high-quality visuals.
• **Scalable Temporal Post-Processing (STP)**: A low-overhead spatio-temporal anti-aliasing upscaler that attempts to produce sharp visuals at scaling factors as low as 50%. | +| **- Upscale Filter** | Use the drop-down to select the filter that HDRP uses for upscaling (unless overridden by user via script). The options are:
• **Catmull-Rom**: A bicubic upsample with 4 taps.
• **Contrast Adaptive Sharpen**: An ultra sharp upsample. This option is not meant for screen percentages less than 50% and still sharpens when you set the screen percentage to 100%. It uses **FidelityFX (CAS) AMD™**.
• **FidelityFX Super Resolution 1.0 AMD™**: A spatial super-resolution technology that leverages cutting-edge algorithms to produce impressive upscaling quality at very fast performance.
• **TAA Upscale**: A temporal anti-aliasing upscaler that uses information from previous frames to produce high-quality visuals.
• **Spatial-Temporal Post-processing (STP)**: A low-overhead spatio-temporal anti-aliasing upscaler that attempts to produce sharp visuals at scaling factors as low as 50%. | | **- Use Mip Bias** | Apply a negative bias on the texture samplers of deferred, opaque and transparent passes. This improves detail on textures but increases the texture fetching cost. Cost varies per platform. | | **- Minimum Screen Percentage** | The minimum screen percentage that dynamic resolution can reach. | | **- Maximum Screen Percentage** | The maximum screen percentage that dynamic resolution can reach. This value must be higher than the **Min Screen Percentage**. | diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Contact-Shadows.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Contact-Shadows.md index 16b9180acbb..beeb0b453ca 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Contact-Shadows.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Contact-Shadows.md @@ -30,8 +30,6 @@ Enable the following properties: You can enable Contact Shadows on a per Light basis for Directional, Point, and Spot Lights. Tick the **Enable** checkbox under the **Contact Shadows** drop-down in the **Shadows** section of each Light to indicate that HDRP should calculate Contact Shadows for that Light. -Only one Light can cast Contact Shadows at a time. This means that, if you have more than one Light that casts Contact Shadows visible on the screen, only the dominant Light renders Contact Shadows. HDRP chooses the dominant Light using the screen space size of the Light’s bounding box. A Directional Light that casts Contact Shadows is always the dominant Light. - **Note**: A Light casts Contact Shadows for every Mesh Renderer that uses a Material that writes to the depth buffer. This is regardless of whether you enable or disable the **Cast Shadows** property on the Mesh Renderer. This means that you can disable **Cast Shadows** on small GameObjects/props and still have them cast Contact Shadows. This is good if you do not want HDRP to render these GameObjects in shadow maps. If you do not want this behavior, use Shader Graph to author a Material that does not write to the depth buffer. [!include[](snippets/volume-override-api.md)] diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Micro-Shadows.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Micro-Shadows.md index 8255ab5c01e..08f2193adc2 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Micro-Shadows.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/Override-Micro-Shadows.md @@ -1,6 +1,8 @@ # Micro Shadows -Micro shadows are shadows that the High Definition Render Pipeline (HDRP) simulates for small details embedded in the Material of a GameObject, but not in its Mesh geometry. HDRP uses the details from the normal map and the ambient occlusion map to estimate the shadows those maps would cast if they were Meshes. +Micro shadows are shadows that the High Definition Render Pipeline (HDRP) simulates for small details embedded in the Material of a GameObject, but not in its Mesh geometry. + +HDRP uses the details from the normal map, the ambient occlusion map, and specular occlusion to estimate the shadows those details would cast if they were meshes. In this image, the different layers of details in the Material shadow each other. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/System-Requirements.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/System-Requirements.md index 66168864d51..495c8368f44 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/System-Requirements.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/System-Requirements.md @@ -33,8 +33,6 @@ For more information, see [System requirements for Unity](https://docs.unity3d.c HRDP is compatible with the following platforms: - Windows and Windows Store, with DirectX 11 or DirectX 12 and Shader Model 5.0 -- Google - - Stadia - Sony - PlayStation 4 - PlayStation 5 diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/TableOfContents.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/TableOfContents.md index 44cd19bac33..ac55f890ec5 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/TableOfContents.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/TableOfContents.md @@ -1,4 +1,4 @@ -* [HDRP Packge](index.md) +* [HDRP Package](index.md) * [What's new](whats-new.md) * [What's new in HDRP 17](whats-new-17.md) * [What's new in HDRP 16](whats-new-16.md) diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/configure-hdrp-for-virtual-reality.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/configure-hdrp-for-virtual-reality.md index b7c1de80f26..a9fd5ec093b 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/configure-hdrp-for-virtual-reality.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/configure-hdrp-for-virtual-reality.md @@ -17,9 +17,9 @@ You can also watch the presentation from Unite Copenhagen (October 2019) to lear * **PC with DX11/DX12/Vulkan**: * Oculus Rift & Rift S (Oculus XR Plugin, Windows 10 and 11, DirectX 11, DirectX 12, Vulkan) * Windows Mixed Reality (Windows XR Plugin, Windows 10 and 11, DirectX 11, DirectX 12, Vulkan) + * OpenVR * **PS4** and **PS5**: * PlayStationVR - * Open VR* **Note**: Valve is currently developing their OpenVR Unity XR plugin for 2019.3 and beyond. For more information, refer to [XR Plugin Architecture](https://docs.unity3d.com/Manual/XRPluginArchitecture.html). diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-a-fullscreen-material.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-a-fullscreen-material.md index 96337127347..ffabede8603 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-a-fullscreen-material.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-a-fullscreen-material.md @@ -70,7 +70,7 @@ To set a source material for the `Blit()` command to use in shader graph: 5. In **Node Settings**, enable the **Exposed** toggle so `Blit()`can bind the texture. 4. Drag the **MainTex** node into your shader graph. 5. Press the Spacebar to open the **Create Node** window -6. In the **Create Node** window, search for the **Texture 2D Array** node and select it to create it in your scene. +6. In the **Create Node** window, search for the **Sample Texture 2D Array** node and select it to create it in your scene. 7. Connect the **MainTex** node to the **Texture Array** port of the **Sample Texture 2D Array** node. 8. Connect the **RBGA** output port of the **Sample Texture 2D Array** to the **Base Color** block in the **Fragment** context. 9. `Blit()` automatically binds the source texture inside the `_MainTex` property. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-realistic-clouds-volumetric-clouds.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-realistic-clouds-volumetric-clouds.md index 25666f40ccb..7ad835a9d3f 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-realistic-clouds-volumetric-clouds.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/create-realistic-clouds-volumetric-clouds.md @@ -10,7 +10,7 @@ The [**Volumetric Clouds** Volume component override](volumetric-clouds-volume-o [!include[](snippets/Volume-Override-Enable-Override.md)] -* In your [HDRP Asset](HDRP Asset) go to **Lighting > Volumetrics > Volumetric Clouds**. +* In your [HDRP Asset](HDRP-Asset.md) go to **Lighting > Volumetrics > Volumetric Clouds**. * In your [Frame Settings](Frame-Settings.md) go to **Lighting > Volumetric Clouds**. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-streaming.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-streaming.md index 4be21399e12..ece305d9a54 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-streaming.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-streaming.md @@ -21,8 +21,8 @@ To enable streaming, follow these steps: You can now enable two types of streaming: -- Enable **Enable Disk Streaming** to stream from disk to CPU memory. -- Enable **Enable GPU Streaming** to stream from CPU memory to GPU memory. You must enable **Enable Disk Streaming** first. +- Enable **Enable GPU Streaming** to stream from CPU memory to GPU memory. +- Enable **Enable Disk Streaming** to stream from disk to CPU memory. You must enable **Enable GPU Streaming** first. You can configure streaming settings in the same window. Refer to [HDRP Asset](HDRP-Asset.md#Lighting) for more information. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-use.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-use.md index 32d2ad96e3b..2fc99994715 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-use.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/probevolumes-use.md @@ -27,7 +27,7 @@ To make sure Reflection Probes also capture lighting data from Adaptive Probe Vo 1. To include a Light in an Adaptive Probe Volume's baked lighting data, open the Inspector for the Light then set the **Light Mode** to **Mixed** or **Baked**. 2. To include a GameObject in an Adaptive Probe Volume's baked lighting data, open the Inspector for the GameObject and enable **Contribute Global Illumination**. -3. To make a GameObject receive baked lighting, open the Inspector for the GameObject and set **Receive Global Illumination** to **Light Probes**. +3. To make a GameObject receive baked lighting, open the Inspector for the GameObject, then in the **Mesh Renderer** component set **Receive Global Illumination** to **Light Probes**. ### Bake your lighting diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/ray-tracing.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/ray-tracing.md index 5bed93ad65b..2d2b85cd127 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/ray-tracing.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/ray-tracing.md @@ -16,4 +16,4 @@ Use ray tracing to create realistic lighting and access other data in a scene th - [Path tracing reference](reference-path-tracing.md) - [Recursive rendering override reference](reference-recursive-rendering.md) -- [Ray Tracing Settings reference](reference-ray-tracing-settings.md \ No newline at end of file +- [Ray Tracing Settings reference](reference-ray-tracing-settings.md) \ No newline at end of file diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/render-graph.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/render-graph.md index 1caa8dff8b1..1b63f398632 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/render-graph.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/render-graph.md @@ -1,4 +1,4 @@ -# Customize the the High Definition Render Pipeline (HDRP) +# Customize the High Definition Render Pipeline (HDRP) The High Definition Render Pipeline (HDRP) uses the [render graph system](https://docs.unity3d.com/Packages/com.unity.render-pipelines.core@latest/index.html?subfolder=/manual/render-graph-system.html) in its implementation. This means that if you want to extend HDRP and implement your own render pipeline features, you need to learn how the render graph system works and how to write rendering code using it. For information on the render graph system and how to use it to write render pipeline features, see the [render graph system](https://docs.unity3d.com/Packages/com.unity.render-pipelines.core@latest/index.html?subfolder=/manual/render-graph-system.html) documentation. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-multiframe-recording-api.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-multiframe-recording-api.md index eafeb809b11..1fd0cc4c2d6 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-multiframe-recording-api.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-multiframe-recording-api.md @@ -14,11 +14,11 @@ The only call that takes any parameters is **BeginRecording**. Here is an explan | **ShutterInterval** | The amount of time the shutter is open between two subsequent frames. A value of **0** results in an instant shutter (no motion blur). A value of **1** means there is no (time) gap between two subsequent frames. | | **ShutterProfile** | An animation curve that specifies the shutter position during the shutter interval. Alternatively, you can also provide the time the shutter was fully open; and when the shutter begins closing. | -Before calling the accumulation API, the application should also set the desired `Time.captureDeltaTime`. The example script below demonstrates how to use these API calls. +Before calling the accumulation API, the application should also set the desired `Time.captureDeltaTime`. Refer to [Combine animations in a script](rendering-combine-animation-sequences-in-script) for an example. ## Limitations The multi-frame rendering API internally changes the `Time.timeScale` of the Scene. This means that: - You can't have different accumulation motion blur parameters per camera. -- Projects that already modify this parameter per frame aren't be compatible with this feature. \ No newline at end of file +- Projects that already modify this parameter per frame aren't be compatible with this feature. diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-understand-multiframe-rendering.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-understand-multiframe-rendering.md index b01241ffbe6..0137a96e7c4 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-understand-multiframe-rendering.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/rendering-understand-multiframe-rendering.md @@ -6,6 +6,6 @@ The High Definition Render Pipeline (HDRP) provides a scripting API that allows This API is particularly useful when recording path-traced movies. Normally, when editing a Scene, the convergence of path tracing restarts every time the Scene changes, to provide artists an interactive editing workflow that allows them to quickly visualize their changes. However such behavior isn't desirable during recording. -The following image shows a rotating GameObject with path tracing and accumulation motion blur, recorded using the [multi-frame recording API](rendering-multiframe recording API) +The following image shows a rotating GameObject with path tracing and accumulation motion blur, recorded using the [multi-frame recording API](rendering-multiframe-recording-API.md) [](Images/path_tracing_recording.png) \ No newline at end of file diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/volumetric-clouds-volume-override-reference.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/volumetric-clouds-volume-override-reference.md index ba0e9c1df21..44b22b7e9fa 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/volumetric-clouds-volume-override-reference.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/volumetric-clouds-volume-override-reference.md @@ -65,6 +65,7 @@ Refer to [Create realistic clouds (volumetric clouds)](create-realistic-clouds-v | -------------------------------- | ------------------------------------------------------------ | | **Temporal Accumulation Factor** | The amount of temporal accumulation to apply to the clouds. Temporal accumulation increases the visual quality of clouds by decreasing the noise. A higher value produces better quality clouds, but can create [ghosting](Glossary.md#ghosting). | | **Ghosting Reduction** | When you enable this property, HDRP removes the ghosting caused by temporal accumulation. This effect might cause a flickering effect when the **Temporal Accumulation Factor** value is low. | +| **Perceptual Blending** | Blend the clouds with the environment. This might cause artifacts if the sky is overexposed. This setting only has an effect when you disable multi-sample antialiasing (MSAA). | | **Num Primary Steps** | The number of steps to use to evaluate the clouds' transmittance. Higher values linearly increase the resource intensity of the effect. | | **Num Light Steps** | The number of steps to use to evaluate the clouds' lighting. Higher values exponent increase the resource intensity of the effect. | diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-foam-in-the-water-system.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-foam-in-the-water-system.md index 109ec4e8149..0af7760f80b 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-foam-in-the-water-system.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-foam-in-the-water-system.md @@ -61,7 +61,9 @@ The following properties exist in all Deformer types. | **Property** | | **Description** | | --------------- | -------------- | ------------------------------------------------------------ | -| **Scale Mode** | | The scaling mode to apply to the deformer. The options are:• **Scale Invariant**: Ignores the scale set in the Transform component and uses the region size directly.• **Inherit from Hierarchy**: Multiplies the Deformer’s region size by the [lossy scale](https://docs.unity3d.com/ScriptReference/Transform-lossyScale.html) of the Transform. Note that since the Deformer uses a top down projection, if the transformation hierarchy is [skewed](https://docs.unity3d.com/Manual/class-Transform.html), the deformer does not scale correctly. | +| **Scale Mode** | | The scaling mode to apply to the deformer. | +| | **Scale Invariant** | Ignores the scale set in the Transform component and uses the region size directly. +| | **Inherit from Hierarchy** | Multiplies the Deformer’s region size by the [lossy scale](https://docs.unity3d.com/ScriptReference/Transform-lossyScale.html) of the Transform. Note that since the Deformer uses a top down projection, if the transformation hierarchy is [skewed](https://docs.unity3d.com/Manual/class-Transform.html), the deformer does not scale correctly. | | **Region Size** | | Control the size of the foam generator in meters. | | **Type** | | | | | **Disk** | Create a foam generator in the shape of a disk. | @@ -79,7 +81,7 @@ These properties are specific to the Texture foam generator type. | **Property** | **Description** | | ------------ | ------------------------------------------------------------ | -| Texture | Specifies the texture used to generate the foam. The red channel holds the surface foam and the green channel holds the deep foam.
This texture can be a regular texture or a Render Texture, which can be updated at runtime by modifying a render target with a full screen shader graph for example. For a Render Texture, use the R16_UNorm format . | +| Texture | Specifies the texture used to generate the foam. The red channel holds the surface foam and the green channel holds the deep foam.
This texture can be a regular texture or a Render Texture, which can be updated at runtime by modifying a render target with a full screen shader graph for example. For a Render Texture, use the R16_UNorm format. | diff --git a/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-use-the-water-system-in-your-project.md b/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-use-the-water-system-in-your-project.md index 2965a2569ae..a7d8db327df 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-use-the-water-system-in-your-project.md +++ b/Packages/com.unity.render-pipelines.high-definition/Documentation~/water-use-the-water-system-in-your-project.md @@ -24,10 +24,7 @@ This is especially important when you upgrade your project from an earlier versi 1. Select a global Volume in your scene, such as the **Sky and Fog Volume**. 2. Click **Add Override**. 3. Select **Lighting** > **Water Rendering**. -4. Set the Water **Enable** property to True. - -![](Images/WaterSystem-EnableTrue.png) - +4. In the **Water Rendering** component, set **State** to **Enabled**. This is especially important when you upgrade your project from an earlier version of Unity, because water is inactive by default. If your project originates in HDRP 14 (Unity 2022.2) or later, the water implementation may work even if you only enable it in the **Quality** settings. diff --git a/Packages/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs b/Packages/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs index ff707075867..d64874723fd 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs +++ b/Packages/com.unity.render-pipelines.high-definition/Editor/Material/LayeredLit/LayeredLitGUI.cs @@ -137,7 +137,7 @@ public static void InitializeMaterialLayers(AssetImporter materialImporter, ref SerializeableGUIDs layersGUID = JsonUtility.FromJson(materialImporter.userData); if (layersGUID.GUIDArray.Length > 0) { - layers = new Material[layersGUID.GUIDArray.Length]; + layers = new Material[kMaxLayerCount]; for (int i = 0; i < layersGUID.GUIDArray.Length; ++i) { layers[i] = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(layersGUID.GUIDArray[i]), typeof(Material)) as Material; @@ -145,7 +145,7 @@ public static void InitializeMaterialLayers(AssetImporter materialImporter, ref } if (layersGUID.withUV != null && layersGUID.withUV.Length > 0) { - withUV = new bool[layersGUID.withUV.Length]; + withUV = new bool[kMaxLayerCount]; for (int i = 0; i < layersGUID.withUV.Length; ++i) withUV[i] = layersGUID.withUV[i]; } @@ -170,8 +170,9 @@ public static void SaveMaterialLayers(Material material, Material[] materialLaye AssetImporter materialImporter = AssetImporter.GetAtPath(AssetDatabase.GetAssetPath(material.GetInstanceID())); SerializeableGUIDs layersGUID; - layersGUID.GUIDArray = new string[materialLayers.Length]; - layersGUID.withUV = new bool[withUV.Length]; + // We should guarantee that the size of the layers is equal to kMaxLayerCount as it is initialized before. + layersGUID.GUIDArray = new string[kMaxLayerCount]; + layersGUID.withUV = new bool[kMaxLayerCount]; for (int i = 0; i < materialLayers.Length; ++i) { if (materialLayers[i] != null) diff --git a/Packages/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/HDRPDefaultVolumeProfileSettingsPropertyDrawer.cs b/Packages/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/HDRPDefaultVolumeProfileSettingsPropertyDrawer.cs index 449ddee8221..b9106bdb0f1 100644 --- a/Packages/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/HDRPDefaultVolumeProfileSettingsPropertyDrawer.cs +++ b/Packages/com.unity.render-pipelines.high-definition/Editor/PropertyDrawers/HDRPDefaultVolumeProfileSettingsPropertyDrawer.cs @@ -1,5 +1,5 @@ using System; -using UnityEditor.Rendering; +using UnityEditor.UIElements; using UnityEngine; using UnityEngine.Rendering; using UnityEngine.Rendering.HighDefinition; @@ -26,87 +26,83 @@ protected override VisualElement CreateHeader() protected override VisualElement CreateAssetFieldUI() { - Action redraw = null; - var container = new IMGUIContainer(() => redraw()); - redraw = () => + VisualElement profileLine = new(); + var toggle = new Toggle(); + toggle.AddToClassList(Foldout.toggleUssClassName); + var checkmark = toggle.Q(className: Toggle.checkmarkUssClassName); + checkmark.AddToClassList(Foldout.checkmarkUssClassName); + var field = new ObjectField(defaultVolumeProfileAssetLabel.text) { - using var indentLevelScope = new EditorGUI.IndentLevelScope(); - using var changeScope = new EditorGUI.ChangeCheckScope(); - - /* values adapted to the ProjectSettings > Graphics */ - var minWidth = 91; - var indent = 94; - var ratio = 0.45f; - EditorGUIUtility.labelWidth = Mathf.Max(minWidth, (int)((container.worldBound.width - indent) * ratio)); - - bool expanded = m_DefaultVolumeProfileFoldoutExpanded.value; - var previousDefaultVolumeProfileAsset = m_VolumeProfileSerializedProperty.objectReferenceValue; - - VolumeProfile defaultVolumeProfileAsset = RenderPipelineGlobalSettingsUI.DrawVolumeProfileAssetField( - m_VolumeProfileSerializedProperty, - defaultVolumeProfileAssetLabel, - getOrCreateVolumeProfile: () => - { - if (RenderPipelineManager.currentPipeline is not HDRenderPipeline) - return null; - - var defaultVolumeProfileSettings = GraphicsSettings.GetRenderPipelineSettings(); - if (defaultVolumeProfileSettings.volumeProfile == null) - { - defaultVolumeProfileSettings.volumeProfile = VolumeUtils.CopyVolumeProfileFromResourcesToAssets( - GraphicsSettings.GetRenderPipelineSettings().defaultVolumeProfile); - } + tooltip = defaultVolumeProfileAssetLabel.tooltip, + objectType = typeof(VolumeProfile), + value = m_VolumeProfileSerializedProperty.objectReferenceValue as VolumeProfile, + }; + field.AddToClassList("unity-base-field__aligned"); //Align with other BaseField + field.Q