コード例 #1
0
ファイル: HMD.cs プロジェクト: Youenn-Bouglouan/Extensions
 private static extern void ovrHmd_GetDesc(IntPtr pHmd, out HMDDesc pDesc);
コード例 #2
0
ファイル: HMD.cs プロジェクト: maral/Extensions
 internal HMD(IntPtr hmd)
 {
     this._hmd     = hmd;
     this._desc    = (HMDDesc)Marshal.PtrToStructure(hmd, typeof(HMDDesc));
     this._profile = new Profile(hmd);
 }
コード例 #3
0
ファイル: HMD.cs プロジェクト: Youenn-Bouglouan/Extensions
 internal HMD(IntPtr hmd)
 {
     this._hmd = hmd;
     this._desc = (HMDDesc)Marshal.PtrToStructure(hmd, typeof(HMDDesc));
     this._profile = new Profile(hmd);
 }