| 896 | } |
| 897 | |
| 898 | ovrResult InputManager::SyncInputState(XrSession session, XrDuration displayPeriod) |
| 899 | { |
| 900 | XrActionsSyncInfo syncInfo = XR_TYPE(ACTIONS_SYNC_INFO); |
| 901 | syncInfo.countActiveActionSets = (uint32_t)m_ActionSets.size(); |
| 902 | syncInfo.activeActionSets = m_ActionSets.data(); |
| 903 | CHK_XR(xrSyncActions(session, &syncInfo)); |
| 904 | |
| 905 | for (InputDevice* device : m_InputDevices) |
| 906 | device->UpdateHaptics(session, displayPeriod); |
| 907 | return ovrSuccess; |
| 908 | } |
no test coverage detected