| 395 | } |
| 396 | |
| 397 | void ReplayManager::ReopenCaptureFile(const QString &path) |
| 398 | { |
| 399 | if(!m_CaptureFile) |
| 400 | m_CaptureFile = RENDERDOC_OpenCaptureFile(); |
| 401 | m_CaptureFile->OpenFile(path, "rdc", NULL); |
| 402 | } |
| 403 | |
| 404 | ExecuteResult ReplayManager::ExecuteAndInject(const rdcstr &exe, const rdcstr &workingDir, |
| 405 | const rdcstr &cmdLine, |
no test coverage detected