| 593 | } |
| 594 | |
| 595 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetControllerVibrationState(ovrSession session, ovrControllerType controllerType, ovrHapticsPlaybackState* outState) |
| 596 | { |
| 597 | REV_TRACE(ovr_GetControllerVibrationState); |
| 598 | MICROPROFILE_META_CPU("Controller Type", controllerType); |
| 599 | |
| 600 | if (!session || !session->Input) |
| 601 | return ovrError_InvalidSession; |
| 602 | |
| 603 | return session->Input->GetControllerVibrationState(session, controllerType, outState); |
| 604 | } |
| 605 | |
| 606 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_TestBoundary(ovrSession session, ovrTrackedDeviceType deviceBitmask, |
| 607 | ovrBoundaryType boundaryType, ovrBoundaryTestResult* outTestResult) |
nothing calls this directly
no test coverage detected