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
1 change: 1 addition & 0 deletions com.unity.render-pipelines.high-definition/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed for area light not updating baked light result when modifying with gizmo.
- Fixed robustness issue with GetOddNegativeScale() in ray tracing, which was impacting normal mapping (1261160).
- Fixed regression where moving face of the probe gizmo was not moving its position anymore.
- Fixed XR single-pass macros in tessellation shaders.

### Changed
- Improve MIP selection for decals on Transparents
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ struct PackedVaryingsToDS
#ifdef VARYINGS_NEED_PASS
PackedVaryingsPassToDS vpass;
#endif

UNITY_VERTEX_OUTPUT_STEREO
};

PackedVaryingsToDS PackVaryingsToDS(VaryingsToDS input)
Expand All @@ -57,7 +55,6 @@ PackedVaryingsToDS PackVaryingsToDS(VaryingsToDS input)
output.vpass = PackVaryingsPassToDS(input.vpass);
#endif

UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output);
return output;
}

Expand Down