| 208 | DisplayConfig::DisplayConfig() {} |
| 209 | |
| 210 | bool DisplayConfig::isStartupComplete() const { |
| 211 | for (auto const &viewer : m_viewers) { |
| 212 | if (!viewer.hasPose()) { |
| 213 | return false; |
| 214 | } |
| 215 | for (auto const &eye : viewer) { |
| 216 | if (!eye.hasPose()) { |
| 217 | return false; |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | return true; |
| 222 | } |
| 223 | |
| 224 | } // namespace client |
| 225 | } // namespace osvr |
no test coverage detected