mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 09:30:44 +00:00
Add ability to create a mapping from RGP linear/interopId <=> eventId
This commit is contained in:
@@ -99,6 +99,18 @@ struct CaptureContextInvoker : ICaptureContext
|
||||
{
|
||||
return m_Ctx.GetDrawcall(eventId);
|
||||
}
|
||||
virtual void CreateRGPMapping(uint32_t version) override
|
||||
{
|
||||
return m_Ctx.CreateRGPMapping(version);
|
||||
}
|
||||
virtual uint32_t GetRGPIdFromEventId(uint32_t eventId) override
|
||||
{
|
||||
return m_Ctx.GetRGPIdFromEventId(eventId);
|
||||
}
|
||||
virtual uint32_t GetEventIdFromRGPId(uint32_t RGPId) override
|
||||
{
|
||||
return m_Ctx.GetEventIdFromRGPId(RGPId);
|
||||
}
|
||||
virtual const SDFile &GetStructuredFile() override { return m_Ctx.GetStructuredFile(); }
|
||||
virtual WindowingSystem CurWindowingSystem() override { return m_Ctx.CurWindowingSystem(); }
|
||||
virtual WindowingData CreateWindowingData(uintptr_t winId) override
|
||||
|
||||
Reference in New Issue
Block a user