()
| 8756 | } |
| 8757 | |
| 8758 | public CVRDebug VRDebug() |
| 8759 | { |
| 8760 | CheckClear(); |
| 8761 | if (m_pVRDebug == null) |
| 8762 | { |
| 8763 | var eError = EVRInitError.None; |
| 8764 | var pInterface = OpenVRInterop.GetGenericInterface(FnTable_Prefix + IVRDebug_Version, ref eError); |
| 8765 | if (pInterface != IntPtr.Zero && eError == EVRInitError.None) |
| 8766 | m_pVRDebug = new CVRDebug(pInterface); |
| 8767 | } |
| 8768 | return m_pVRDebug; |
| 8769 | } |
| 8770 | |
| 8771 | public CVRNotifications VRNotifications() |
| 8772 | { |
no test coverage detected