| 15 | } |
| 16 | |
| 17 | SoftwareVsyncMonitor::SoftwareVsyncMonitor() |
| 18 | { |
| 19 | connect(&m_softwareClock, &QTimer::timeout, this, &SoftwareVsyncMonitor::handleSyntheticVsync); |
| 20 | m_softwareClock.setSingleShot(true); |
| 21 | } |
| 22 | |
| 23 | int SoftwareVsyncMonitor::refreshRate() const |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected