| 571 | } |
| 572 | |
| 573 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SubmitControllerVibration(ovrSession session, ovrControllerType controllerType, const ovrHapticsBuffer* buffer) |
| 574 | { |
| 575 | REV_TRACE(ovr_SubmitControllerVibration); |
| 576 | |
| 577 | if (!session) |
| 578 | return ovrError_InvalidSession; |
| 579 | |
| 580 | return session->Input->SubmitControllerVibration(session, controllerType, buffer); |
| 581 | } |
| 582 | |
| 583 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetControllerVibrationState(ovrSession session, ovrControllerType controllerType, ovrHapticsPlaybackState* outState) |
| 584 | { |
nothing calls this directly
no test coverage detected