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

Method GetAPIEventForEID

qrenderdoc/Windows/EventBrowser.cpp:6048–6062  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6046}
6047
6048APIEvent EventBrowser::GetAPIEventForEID(uint32_t eid)
6049{
6050 const ActionDescription *action = GetActionForEID(eid);
6051
6052 if(action)
6053 {
6054 for(const APIEvent &ev : action->events)
6055 {
6056 if(ev.eventId == eid)
6057 return ev;
6058 }
6059 }
6060
6061 return APIEvent();
6062}
6063
6064const ActionDescription *EventBrowser::GetActionForEID(uint32_t eid)
6065{

Callers 3

OnCaptureLoadedMethod · 0.80
fillAPIViewMethod · 0.80

Calls 1

APIEventFunction · 0.85

Tested by 1

fillAPIViewMethod · 0.64