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
Comments (3)
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
- Crash with multiple stack traces when playing video on a render texture with low-end graphics devices
- Circle handle of the Game view scale slider bar disappears when the scale is set to 1x
- Asset Bundles non-deterministic behavior with CRCs and hash when a video has Transcoding enabled and Sprite Atlas has an override option enabled
- [Quality Hackweek] Errors "InvalidOperationException: EnsureRunningOnMainThread can only be called from the main thread" and "NullReferenceException" shown when switching build platforms with Muse Texture package installed
- "Importer(DefaultImporter) generated inconsistent result for asset" warnings are thrown when reimporting the "URP" texture
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
:,(