Esempio n. 1
0
 public void Clear()
 {
     this.m_pVRSystem          = null;
     this.m_pVRChaperone       = null;
     this.m_pVRChaperoneSetup  = null;
     this.m_pVRCompositor      = null;
     this.m_pVROverlay         = null;
     this.m_pVRRenderModels    = null;
     this.m_pVRExtendedDisplay = null;
     this.m_pVRSettings        = null;
     this.m_pVRApplications    = null;
 }
Esempio n. 2
0
 public CVRExtendedDisplay VRExtendedDisplay()
 {
     this.CheckClear();
     if (this.m_pVRExtendedDisplay == null)
     {
         EVRInitError eVRInitError     = EVRInitError.None;
         IntPtr       genericInterface = OpenVRInterop.GetGenericInterface("FnTable:IVRExtendedDisplay_001", ref eVRInitError);
         if (genericInterface != IntPtr.Zero && eVRInitError == EVRInitError.None)
         {
             this.m_pVRExtendedDisplay = new CVRExtendedDisplay(genericInterface);
         }
     }
     return(this.m_pVRExtendedDisplay);
 }
Esempio n. 3
0
		public CVRExtendedDisplay VRExtendedDisplay()
		{
			CheckClear();
			if (m_pVRExtendedDisplay == null)
			{
				var eError = EVRInitError.None;
				var pInterface = OpenVRInterop.GetGenericInterface(FnTable_Prefix+IVRExtendedDisplay_Version, ref eError);
				if (pInterface != IntPtr.Zero && eError == EVRInitError.None)
					m_pVRExtendedDisplay = new CVRExtendedDisplay(pInterface);
			}
			return m_pVRExtendedDisplay;
		}
Esempio n. 4
0
 public void Clear()
 {
     m_pVRSystem = null;
     m_pVRChaperone = null;
     m_pVRChaperoneSetup = null;
     m_pVRCompositor = null;
     m_pVROverlay = null;
     m_pVRRenderModels = null;
     m_pVRExtendedDisplay = null;
     m_pVRSettings = null;
     m_pVRApplications = null;
 }
Esempio n. 5
0
 public CVRExtendedDisplay VRExtendedDisplay()
 {
     this.CheckClear();
     if (this.m_pVRExtendedDisplay == null)
     {
         EVRInitError eVRInitError = EVRInitError.None;
         IntPtr genericInterface = OpenVRInterop.GetGenericInterface("FnTable:IVRExtendedDisplay_001", ref eVRInitError);
         if (genericInterface != IntPtr.Zero && eVRInitError == EVRInitError.None)
         {
             this.m_pVRExtendedDisplay = new CVRExtendedDisplay(genericInterface);
         }
     }
     return this.m_pVRExtendedDisplay;
 }