Search Issue Tracker
By Design
Votes
1
Found in
2017.3.0a1
2018.3.0a1
2018.3.3f1
2019.1.0a1
2019.2.0a1
Issue ID
1124692
Regression
No
Shader doesn't work with HDR
Reproduction steps:
1. Open "BlitTest.zip" project
2. Look at the Game View
3. "Main Camera" -> "HDR" -> uncheck/"off"
4. Look at the Game view
Expected Result: Shader works with HDR
Actual Result: Shader doesn't work with HDR
Reproduced with: 2019.2.0a4, 2019.1.0b3, 2018.3.5f1, 2017.4.20f1
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- UI Overlay Image gets darker on each Camera when multiple Cameras are used
- Assertion failed on expression: 'scriptedImporterClass == SCRIPTING_NULL error when opening the standalone profiler window
- Disabled assets in Import Unity Package window aren't tracked but count as being selected by user
- [Windows] Crash on GetManagerFromContext when video is playing and creating High Definition 3D Projects after FMOD failed to switch back to normal output Error appeared
- GC Alloc produced when adding items to MultiColumnListView with Auto Assign Binding
Resolution Note:
This is by-design because
when "Allow HDR" in ON, an intermediate texture (HDR format) will be created and that means there will be a final blit from this texture back to the screen.
when "Allow HDR" in OFF, the blit wouldn't happen as contents are directly rendered to the screen
User can use Frame Debugger to compare these 2 situations.
User can override this final blit by having this in the code. But just make sure the blit source texture has the content that the user wanted.
void OnRenderImage(RenderTexture src, RenderTexture dst)
{
Graphics.Blit(src,dst);
}