| 561 | } |
| 562 | |
| 563 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SetControllerVibration(ovrSession session, ovrControllerType controllerType, float frequency, float amplitude) |
| 564 | { |
| 565 | REV_TRACE(ovr_SetControllerVibration); |
| 566 | |
| 567 | if (!session) |
| 568 | return ovrError_InvalidSession; |
| 569 | |
| 570 | return session->Input->SetControllerVibration(session, controllerType, frequency, amplitude); |
| 571 | } |
| 572 | |
| 573 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SubmitControllerVibration(ovrSession session, ovrControllerType controllerType, const ovrHapticsBuffer* buffer) |
| 574 | { |
nothing calls this directly
no test coverage detected