diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-03-04 02:09:24 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-03-04 02:09:24 +0000 |
| commit | 2808b9f671e29e27a4d04f6c8ea21c40d8c573eb (patch) | |
| tree | ef3a16a6b0271385b05127ce2223abc9475b6fc8 /Graphics/GraphicsEngine | |
| parent | Implemented shader resource reflectio API in Vk backend (diff) | |
| download | DiligentCore-2808b9f671e29e27a4d04f6c8ea21c40d8c573eb.tar.gz DiligentCore-2808b9f671e29e27a4d04f6c8ea21c40d8c573eb.zip | |
Almost completed refactoring d3d11 backend to comply with the new API
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/interface/Shader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/interface/Shader.h b/Graphics/GraphicsEngine/interface/Shader.h index 2ac6a2c6..e877ce17 100644 --- a/Graphics/GraphicsEngine/interface/Shader.h +++ b/Graphics/GraphicsEngine/interface/Shader.h @@ -241,7 +241,7 @@ public: virtual Uint32 GetResourceCount()const = 0; /// Returns the pointer to the array of shader resources - virtual const ShaderResourceDesc* GetResources()const = 0; + virtual ShaderResourceDesc GetResource(Uint32 Index)const = 0; }; } |
