Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public void SetReferenceSize(int width, int height, MSAASamples msaaSamples, boo
lastFrameMaxSize = new Vector2(GetMaxWidth(), GetMaxHeight());
}

if (DynamicResolutionHandler.instance.HardwareDynamicResIsEnabled())
if (DynamicResolutionHandler.instance.HardwareDynamicResIsEnabled() && m_HardwareDynamicResRequested)
{
m_RTHandleProperties.rtHandleScale = new Vector4(1.0f, 1.0f, 1.0f, 1.0f);
}
Expand Down
6 changes: 6 additions & 0 deletions com.unity.render-pipelines.high-definition/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
Version Updated
The version number for this package has increased due to a version update of a related graphics package.

### Fixed

- Fixed TAA issue and hardware dynamic resolution.



## [8.2.0] - 2020-07-08

### Added
Expand Down