MCPcopy Create free account
hub / github.com/baldurk/renderdoc / Launch

Method Launch

qrenderdoc/Code/Interface/RemoteHost.cpp:194–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

192}
193
194ResultDetails RemoteHost::Launch()
195{
196 if(m_protocol)
197 // this is blocking
198 return m_protocol->StartRemoteServer(m_hostname);
199
200 rdcstr run = RunCommand();
201
202 RDProcess process;
203 process.start(run);
204 process.waitForFinished(2000);
205 process.detach();
206
207 return {ResultCode::Succeeded};
208}
209
210bool RemoteHost::IsServerRunning() const
211{

Callers 2

setRemoteHostMethod · 0.45
runRemoteServerMethod · 0.45

Calls 4

StartRemoteServerMethod · 0.80
startMethod · 0.45
waitForFinishedMethod · 0.45
detachMethod · 0.45

Tested by

no test coverage detected