コード例 #1
0
ファイル: HMD.cs プロジェクト: Youenn-Bouglouan/Extensions
 private static unsafe extern bool ovrHmd_ConfigureRendering(IntPtr hmd, D3D11ConfigData* apiConfig, DistortionCapabilities distortionCaps, FovPort[] eyeFovIn, EyeRenderDesc* eyeRenderDescOut);
コード例 #2
0
ファイル: HMD.cs プロジェクト: Youenn-Bouglouan/Extensions
 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);
     }
 }