コード例 #1
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 internal static extern uint VR_IVROverlay_GetOverlayName(IntPtr instancePtr, ulong ulOverlayHandle, System.Text.StringBuilder pchValue, uint unBufferSize, ref VROverlayError pError);
コード例 #2
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public abstract uint GetOverlayName(ulong ulOverlayHandle,System.Text.StringBuilder pchValue,uint unBufferSize,ref VROverlayError pError);
コード例 #3
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public abstract string GetOverlayErrorNameFromEnum(VROverlayError error);
コード例 #4
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 internal static extern IntPtr VR_IVROverlay_GetOverlayErrorNameFromEnum(IntPtr instancePtr, VROverlayError error);
コード例 #5
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public override uint GetOverlayName(ulong ulOverlayHandle,System.Text.StringBuilder pchValue,uint unBufferSize,ref VROverlayError pError)
 {
     CheckIfUsable();
     uint result = VRNativeEntrypoints.VR_IVROverlay_GetOverlayName(m_pVROverlay,ulOverlayHandle,pchValue,unBufferSize,ref pError);
     return result;
 }
コード例 #6
0
ファイル: openvr_api.cs プロジェクト: billcrosbie/openvr
 public override string GetOverlayErrorNameFromEnum(VROverlayError error)
 {
     CheckIfUsable();
     IntPtr result = VRNativeEntrypoints.VR_IVROverlay_GetOverlayErrorNameFromEnum(m_pVROverlay,error);
     return (string) Marshal.PtrToStructure(result, typeof(string));
 }