| 110 | /// @brief Helper function for setting state |
| 111 | template <typename ReportType> |
| 112 | void m_setState(const OSVR_TimeValue ×tamp, ReportType const &report, |
| 113 | std::true_type const &) { |
| 114 | m_state.setStateFromReport(timestamp, report); |
| 115 | } |
| 116 | |
| 117 | /// @brief Helper function for "setting state" on reports we don't keep |
| 118 | /// state from |
nothing calls this directly
no test coverage detected