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

Method GetThis

renderdoc/android/jdwp_connection.cpp:360–371  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

358}
359
360objectID Connection::GetThis(threadID thread, frameID frame)
361{
362 Command cmd(CommandSet::StackFrame, 3);
363 cmd.GetData().Write(thread).Write(frame);
364
365 if(!SendReceive(cmd))
366 return {};
367
368 taggedObjectID ret = {};
369 cmd.GetData().Read(ret).Done();
370 return ret.id;
371}
372
373void Connection::ReadEvent(CommandData &data, Event &ev)
374{

Callers 1

InjectLibrariesFunction · 0.80

Calls 4

DoneMethod · 0.80
WriteMethod · 0.45
GetDataMethod · 0.45
ReadMethod · 0.45

Tested by

no test coverage detected