| 581 | } |
| 582 | |
| 583 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetControllerVibrationState(ovrSession session, ovrControllerType controllerType, ovrHapticsPlaybackState* outState) |
| 584 | { |
| 585 | REV_TRACE(ovr_GetControllerVibrationState); |
| 586 | |
| 587 | if (!session) |
| 588 | return ovrError_InvalidSession; |
| 589 | |
| 590 | return session->Input->GetControllerVibrationState(session, controllerType, outState); |
| 591 | } |
| 592 | |
| 593 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_TestBoundary(ovrSession session, ovrTrackedDeviceType deviceBitmask, |
| 594 | ovrBoundaryType boundaryType, ovrBoundaryTestResult* outTestResult) |
nothing calls this directly
no test coverage detected