| 253 | } |
| 254 | |
| 255 | extern "C" RENDERDOC_API void RENDERDOC_CC RENDERDOC_SetDebugLogFile(const rdcstr &log) |
| 256 | { |
| 257 | if(!log.empty()) |
| 258 | { |
| 259 | RDCLOGFILE(log.c_str()); |
| 260 | |
| 261 | // need to recreate the crash handler to propagate the new log filename. |
| 262 | RenderDoc::Inst().RecreateCrashHandler(); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | extern "C" RENDERDOC_API void RENDERDOC_CC RENDERDOC_LogMessage(LogType type, const rdcstr &project, |
| 267 | const rdcstr &file, |
no test coverage detected