| 329 | } |
| 330 | |
| 331 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_RecenterTrackingOrigin(ovrSession session) |
| 332 | { |
| 333 | REV_TRACE(ovr_RecenterTrackingOrigin); |
| 334 | |
| 335 | if (!session) |
| 336 | return ovrError_InvalidSession; |
| 337 | |
| 338 | vr::VRChaperone()->ResetZeroPose(vr::VRCompositor()->GetTrackingSpace()); |
| 339 | return ovrSuccess; |
| 340 | } |
| 341 | |
| 342 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SpecifyTrackingOrigin(ovrSession session, ovrPosef originPose) |
| 343 | { |
nothing calls this directly
no outgoing calls
no test coverage detected