mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-01 04:10:58 +00:00
Add ReplayOptions struct to contain replay-time configuration
* Not currently exposed to the UI or used by the drivers, we just pass the default object through
This commit is contained in:
@@ -461,13 +461,14 @@ struct AndroidRemoteServer : public RemoteServer
|
||||
}
|
||||
|
||||
virtual rdcpair<ReplayStatus, IReplayController *> OpenCapture(
|
||||
uint32_t proxyid, const char *filename, RENDERDOC_ProgressCallback progress) override
|
||||
uint32_t proxyid, const char *filename, const ReplayOptions &opts,
|
||||
RENDERDOC_ProgressCallback progress) override
|
||||
{
|
||||
ResetAndroidSettings();
|
||||
|
||||
LazilyStartLogcatThread();
|
||||
|
||||
return RemoteServer::OpenCapture(proxyid, filename, progress);
|
||||
return RemoteServer::OpenCapture(proxyid, filename, opts, progress);
|
||||
}
|
||||
|
||||
virtual rdcstr GetHomeFolder() override { return ""; }
|
||||
|
||||
Reference in New Issue
Block a user