| 582 | } |
| 583 | |
| 584 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SubmitControllerVibration(ovrSession session, ovrControllerType controllerType, const ovrHapticsBuffer* buffer) |
| 585 | { |
| 586 | REV_TRACE(ovr_SubmitControllerVibration); |
| 587 | MICROPROFILE_META_CPU("Controller Type", controllerType); |
| 588 | |
| 589 | if (!session || !session->Input) |
| 590 | return ovrError_InvalidSession; |
| 591 | |
| 592 | return session->Input->SubmitControllerVibration(session, controllerType, buffer); |
| 593 | } |
| 594 | |
| 595 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetControllerVibrationState(ovrSession session, ovrControllerType controllerType, ovrHapticsPlaybackState* outState) |
| 596 | { |
nothing calls this directly
no test coverage detected