Esempio n. 1
0
 private static extern Matrix ovrMatrix4f_Projection(FovPort fov, float znear, float zfar, bool rightHanded);
Esempio n. 2
0
 private static extern Matrix ovrMatrix4f_Projection(FovPort fov, float znear, float zfar, bool rightHanded);
Esempio n. 3
0
 public static Matrix MatrixProjection(FovPort fov, float znear, float zfar, bool rightHanded)
 {
     return(ovrMatrix4f_Projection(fov, znear, zfar, rightHanded));
 }
Esempio n. 4
0
 private static extern EyeRenderDesc ovrHmd_GetRenderDesc(IntPtr hmd, EyeType eye, FovPort fov);
Esempio n. 5
0
 public static Matrix MatrixProjection(FovPort fov, float znear, float zfar, bool rightHanded)
 {
     return ovrMatrix4f_Projection(fov, znear, zfar, rightHanded);
 }
Esempio n. 6
0
 public EyeRenderDesc GetRenderDesc(EyeType eye, FovPort fov)
 {
     return(ovrHmd_GetRenderDesc(this._hmd, eye, fov));
 }
Esempio n. 7
0
 private static extern Size2 ovrHmd_GetFovTextureSize(IntPtr hmd, EyeType eye, FovPort fov, float pixelsPerDisplayPixel);
Esempio n. 8
0
 private static extern EyeRenderDesc ovrHmd_GetRenderDesc(IntPtr hmd, EyeType eye, FovPort fov);
Esempio n. 9
0
 public Size2 GetFovTextureSize(EyeType eye, FovPort fov, float pixelsPerDisplayPixel)
 {
     return(ovrHmd_GetFovTextureSize(this._hmd, eye, fov, pixelsPerDisplayPixel));
 }
Esempio n. 10
0
 private static extern Size2 ovrHmd_GetFovTextureSize(IntPtr hmd, EyeType eye, FovPort fov, float pixelsPerDisplayPixel);
Esempio n. 11
0
 private static unsafe extern bool ovrHmd_ConfigureRendering(IntPtr hmd, D3D11ConfigData* apiConfig, DistortionCapabilities distortionCaps, FovPort[] eyeFovIn, EyeRenderDesc* eyeRenderDescOut);
Esempio n. 12
0
 public EyeRenderDesc GetRenderDesc(EyeType eye, FovPort fov)
 {
     return ovrHmd_GetRenderDesc(this._hmd, eye, fov);
 }
Esempio n. 13
0
 public Size2 GetFovTextureSize(EyeType eye, FovPort fov, float pixelsPerDisplayPixel)
 {
     return ovrHmd_GetFovTextureSize(this._hmd, eye, fov, pixelsPerDisplayPixel);
 }
Esempio n. 14
0
 public unsafe bool ConfigureRendering(D3D11ConfigData apiConfig, DistortionCapabilities distortionCaps, FovPort[] eyeFovIn, EyeRenderDesc[] eyeRenderDescOut)
 {
     fixed (EyeRenderDesc* descRef = eyeRenderDescOut)
     {
         return ovrHmd_ConfigureRendering(this._hmd, &apiConfig, distortionCaps, eyeFovIn, descRef);
     }
 }