You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Packages/com.unity.render-pipelines.core/CHANGELOG.md
+60
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,66 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
10
10
Version Updated
11
11
The version number for this package has increased due to a version update of a related graphics package.
12
12
13
+
## [17.0.3] - 2025-02-13
14
+
15
+
This version is compatible with Unity 6000.0.39f1.
16
+
17
+
### Added
18
+
- helper functions to Render Graph.
19
+
20
+
### Changed
21
+
- Improved the Native Render Pass CPU performance by implementing a Render Pass pooling system (URP RG).
22
+
- Reworked the additional properties.
23
+
- Improved Render Graph warning message in URP when missing RecordRenderGraph implementation.
24
+
- Displayed subpass and attachment index on Render Graph Viewer.
25
+
- Added a new icon and tooltip if there are multiple usage details for a resource block on Render Graph Viewer.
26
+
- Fixed Render Graph Viewer being called before Render Graph execution and its resource deallocation.
27
+
- Added What's New in Unity 6 to SRP Core Package.
28
+
29
+
### Fixed
30
+
- Added messaging to the Rendering Debugger UI to make it clearer that GPU Resident Drawer settings do not work if GPU Resident Drawer is not enabled.
31
+
- GPU Resident Drawer: Changed BatchRendererGroup variants was not reinitializing the system.
32
+
- Improved the compiler logic that detects if the current render target is being used outside the current native render pass (e.g., when the pass is broken up by an unsafe pass), and determines the store action for this case. The fix now ensures that the `StoreAndResolve` action is used when the resource is read by an Unsafe Pass.
33
+
- Rendering Debugger - Keep the correct selected panel when entering and exiting from playmode.
34
+
- Removed "depth only surface" warning message appearing when using Game View Gizmos in URP RG.
35
+
- Render Graph Viewer: Fixed missing min height when resizing side panel vertical splitter.
36
+
- Render Graph Viewer: Fixed possible NullReferenceException when opening the project.
37
+
- Render Graph Viewer: Fixed side panel splitter state after returning from empty pass/resource filter.
38
+
- Render Graph Viewer: Fixed long resource name clipping issues in side panel.
- Fixed memory usage regression causing up to 150MB higher memory usage in URP player builds.
41
+
- Added missing user-facing text when inspecting volume profile when render pipeline has not been properly initialized yet.
42
+
- Game view background turn yellow after enable render graph.
43
+
- Fixed light.useViewFrustumForShadowCasterCull previously being ignored for shadow cascades. light.useViewFrustumForShadowCasterCull now works as expected.
44
+
- Fixed an exception thrown when Render Graph pass was missing its renderFunc but tried to compute its hash value.
45
+
- Fixed Render Graph Compiler logic bug where UnsafePass using MSAA texture could result in missing resolve surface errors.
46
+
- Fixed incorrect default source texture name for Render Graph blit util function.
47
+
- Fixed NullReferenceException when jumping to pass code from Render Graph Viewer.
- Fixed a null reference exception on the Graphics Settings stripper.
50
+
- Avoid that the same volume can be registered more than 1 time in the VolumeManager.
51
+
- Fixed crash caused by indirect argument buffer being one item too small.
52
+
-[GLES3] Fixed an issue where Blitter.GetBlitMaterial(TextureDimension.Tex2DArray) returns null.
53
+
- Fixed alignment of the columns on DebugUI.Foldouts.
54
+
- Fixed BlitTexture(RenderTargetIdentifier) to be affected by PostProcessing.
55
+
- Fixed errors that could happen when interacting with the Default Volume Profile context menu in Project Settings > Graphics.
56
+
- Fixed a numerical error of ComputeEdgeFactor(V1, V2) when two vectors are colinear.
57
+
- Fixed potential data corruption due to incorrect native render pass store action in NRP compiler.
58
+
- Added stencil flag to read-only depth logic in NRP compiler to avoid unintentional usage of depth read and stencil write states on some APIs.
59
+
- Added more error checking to `RenderGraph.ImportTexture` to prevent importing RenderTextures that have both color and depth.
60
+
An exception will now be thrown in this case.
61
+
- Fixed an issue when using multiple AddBlitPass would binds the _BlitTexture wrongly.
62
+
- Modified TextureDesc so it can now use GraphicsFormat to set the depthStencil format (TextureDesc.format). The TextureDesc.depthBufferBits and TextureDesc.colorFormat fields are now properties that call GraphicsFormatUtilities functions for backwards compatibility. The descriptor now unambiguously describes a single resource, either color or depth. Therefore, TextureHandle clearly represents a single resource.
63
+
- Modified RTHandle allocators so they can now use GraphicsFormat to set the depthStencil format (TextureDesc.format). The allocators take a single format for either color or depth stencil to avoid incorrectly creating depth instead of color or vice versa.
64
+
- Fixed a crash on DX12 due to invalid subpass flags passed by native render pass compiler.
65
+
- Fixed an issue where Lens Flare was not rendering properly in OpenGLES3.
66
+
- Fixed render graph incorrectly handling rendering to array slices and mipmaps other than 0 in some cases.
67
+
- Render Graph Viewer - Improved UI lock when searching on side panels.
68
+
- Render Graph Viewer - Padding corrected on burger menu on the side panels.
Debug.LogWarning($"Failed to make one or more probe volume output file(s) writable. This could result in baked data not being properly written to disk. {string.Join(",",outputPaths)}");
0 commit comments