| 64 | } |
| 65 | |
| 66 | void InputRecordingControls::processControlQueue() |
| 67 | { |
| 68 | if (!m_controlQueue.empty()) |
| 69 | { |
| 70 | |
| 71 | while (!m_controlQueue.empty()) |
| 72 | { |
| 73 | m_controlQueue.front()(); |
| 74 | m_controlQueue.pop(); |
| 75 | } |
| 76 | MTGS::PresentCurrentFrame(); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | bool InputRecordingControls::isRecording() const |
| 81 | { |
no test coverage detected