Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.
Options

Unity Stereo Matrices

terboterbo
edited January 2017 in General

Is there any away in Unity to get the stereo view and projection matrices for the Hololens? I really want to save the previous frame's view and proj matrices for various effects. I've tried everything I can think of:
1) Camera.GetStereoViewMatrix and Camera.GetStereoProjectionMatrix are always identity.
2) The camera's transform/Camera.worldToCameraMatrix and GL.GetGPUProjectionMatrix do not produce correct View-projection matrices. In fact they are always the same for both cameras.
3) I've tried Material.GetMatrix("UNITY_MATRIX_V") and Material.GetMatrix("UNITY_MATRIX_P"), which always fail, likely because they are packed in Constant Buffers (UnityShaderVariables.cginc).
4) I've tried writing a native UWP dll that manually extracts camera poses from a HolographicFrame, yet HolographicSpace::CreateForCoreWindow barfs (SEH) because Unity has already done it for the app's CoreWindow.

Am I missing something? These seems like fundamental data that should be readily available.

Tagged:
Sign In or Register to comment.