Add option to non-interactively resolve callstack symbols

* Primarily for use in scripts
This commit is contained in:
baldurk
2020-01-13 18:28:01 +00:00
parent 8e15b1b7fa
commit f4ab28205f
11 changed files with 39 additions and 20 deletions
+2 -2
View File
@@ -614,7 +614,7 @@ static void ActiveRemoteClientThread(ClientThread *threadData,
}
});
resolver = Callstack::MakeResolver(buf.data(), buf.size(),
resolver = Callstack::MakeResolver(false, buf.data(), buf.size(),
[&progress](float p) { progress = p; });
Threading::JoinThread(ticker);
@@ -1943,7 +1943,7 @@ bool RemoteServer::HasCallstacks()
return hasCallstacks;
}
bool RemoteServer::InitResolver(RENDERDOC_ProgressCallback progress)
bool RemoteServer::InitResolver(bool interactive, RENDERDOC_ProgressCallback progress)
{
{
WRITE_DATA_SCOPE();