Search Issue Tracker
Fixed in 2018.2.X
Fixed in 2018.1.X
Votes
27
Found in
2018.1.0a2
2018.1.0b9
Issue ID
1010047
Regression
Yes
Oculus VR view is dark with Linear Color space and Single-Pass Rendering
Steps to reproduce:
1. Download and open the latest project("linvr.zip")
2. Enter Playmode with the Oculus headset
3. Compare Game view in the editor and in the HMD
Expected result: the same
Actual result: VR view is significantly higher
Reproduced on 2018.1.0a2, 2018.1.0b10, 2018.2.0a3
Not reproduced on 2017.3.1p3, 2018.1.0a1
Regression introduced in 2018.1.0a2
Notes:
- Not reproducible on OpenVR, Gamma or MultiPass
VERIFIED Fixed 2018.1.4f1, 2018.2.0b2, 2018.3.0a1
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
- [Dragon Crashers] Build fails in U6
- [Dragon Crashers] 4 Shader error messages on import
- [Dragon Crashers] Readme text is white on light grey
- Cursor stays in front of the first character when entering text in the TextMeshPro field
- Searching in Hierarchy causes unwanted component calls
cozyurt_unity
Jul 17, 2020 14:04
kedi maması köpek maması www.patilimama.com
equalsequals
May 07, 2018 15:56
I have found a workaround for unblocking testing in the HMD if switching to OpenVR is not an option.
If you do a final Blit from OnRenderImage, you can do the Linear->Gamma conversion yourself. I used the LinearToGammaSpaceExact helper in UnityCG.cginc:
#if defined(UNITY_SINGLE_PASS_STEREO)
col.rgb = fixed3( LinearToGammaSpaceExact(col.r), LinearToGammaSpaceExact(col.g), LinearToGammaSpaceExact(col.b));
#endif
Note that this will cause your Game View in Editor to appear overly bright, because it is doing the adjustment twice.
SuppleTeets
May 04, 2018 19:11
:,(