()
| 8717 | } |
| 8718 | |
| 8719 | public CVRInput VRInput() |
| 8720 | { |
| 8721 | CheckClear(); |
| 8722 | if (m_pVRInput == null) |
| 8723 | { |
| 8724 | var eError = EVRInitError.None; |
| 8725 | var pInterface = OpenVRInterop.GetGenericInterface(FnTable_Prefix+IVRInput_Version, ref eError); |
| 8726 | if (pInterface != IntPtr.Zero && eError == EVRInitError.None) |
| 8727 | m_pVRInput = new CVRInput(pInterface); |
| 8728 | } |
| 8729 | return m_pVRInput; |
| 8730 | } |
| 8731 | |
| 8732 | public CVRIOBuffer VRIOBuffer() |
| 8733 | { |
no test coverage detected