| 389 | } |
| 390 | |
| 391 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetDevicePoses(ovrSession session, ovrTrackedDeviceType* deviceTypes, int deviceCount, double absTime, ovrPoseStatef* outDevicePoses) |
| 392 | { |
| 393 | REV_TRACE(ovr_GetDevicePoses); |
| 394 | |
| 395 | if (!session) |
| 396 | return ovrError_InvalidSession; |
| 397 | |
| 398 | return session->Input->GetDevicePoses(session, deviceTypes, deviceCount, absTime, outDevicePoses); |
| 399 | } |
| 400 | |
| 401 | struct ovrSensorData_; |
| 402 | typedef struct ovrSensorData_ ovrSensorData; |
nothing calls this directly
no test coverage detected