| 1895 | } |
| 1896 | |
| 1897 | ReplayOutput *ReplayController::CreateOutput(WindowingData window, ReplayOutputType type) |
| 1898 | { |
| 1899 | CHECK_REPLAY_THREAD(); |
| 1900 | |
| 1901 | ReplayOutput *out = new ReplayOutput(this, window, type); |
| 1902 | |
| 1903 | m_Outputs.push_back(out); |
| 1904 | |
| 1905 | out->SetFrameEvent(m_EventID); |
| 1906 | |
| 1907 | return out; |
| 1908 | } |
| 1909 | |
| 1910 | void ReplayController::ShutdownOutput(IReplayOutput *output) |
| 1911 | { |