mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-17 15:30:51 +00:00
Expose queries for descriptor stores and D3D12 root signature range
* This will allow a UI viewer or consumer of the replay API to more easily query 'all' descriptors for a given store.
This commit is contained in:
@@ -519,6 +519,10 @@ struct CaptureContextInvoker : ObjectForwarder<ICaptureContext>
|
||||
virtual TextureDescription *GetTexture(ResourceId id) override { return m_Obj.GetTexture(id); }
|
||||
virtual const rdcarray<TextureDescription> &GetTextures() override { return m_Obj.GetTextures(); }
|
||||
virtual BufferDescription *GetBuffer(ResourceId id) override { return m_Obj.GetBuffer(id); }
|
||||
virtual DescriptorStoreDescription *GetDescriptorStore(ResourceId id) override
|
||||
{
|
||||
return m_Obj.GetDescriptorStore(id);
|
||||
}
|
||||
virtual const rdcarray<BufferDescription> &GetBuffers() const override
|
||||
{
|
||||
return m_Obj.GetBuffers();
|
||||
|
||||
Reference in New Issue
Block a user