summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-09-18 20:57:37 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-09-18 20:57:37 +0000
commit9599613c63f7b415c102a03fc406b4152c4858ef (patch)
treed6b9b7e1fb8d651c568a52aa1f3363a9d7e8ff02 /Graphics/GraphicsEngineVulkan
parentFixed gcc/clang error (diff)
downloadDiligentCore-9599613c63f7b415c102a03fc406b4152c4858ef.tar.gz
DiligentCore-9599613c63f7b415c102a03fc406b4152c4858ef.zip
Updated ShaderResourceBindingBase: using PSO implementation type for the pointers
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/ShaderResourceBindingVkImpl.hpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/ShaderResourceBindingVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/ShaderResourceBindingVkImpl.hpp
index b3cbe742..55c65757 100644
--- a/Graphics/GraphicsEngineVulkan/include/ShaderResourceBindingVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/ShaderResourceBindingVkImpl.hpp
@@ -40,16 +40,18 @@
namespace Diligent
{
-class FixedBlockMemoryAllocator;
+class PipelineStateVkImpl;
/// Implementation of the Diligent::IShaderResourceBindingVk interface
// sizeof(ShaderResourceBindingVkImpl) == 72 (x64, msvc, Release)
-class ShaderResourceBindingVkImpl final : public ShaderResourceBindingBase<IShaderResourceBindingVk>
+class ShaderResourceBindingVkImpl final : public ShaderResourceBindingBase<IShaderResourceBindingVk, PipelineStateVkImpl>
{
public:
- using TBase = ShaderResourceBindingBase<IShaderResourceBindingVk>;
+ using TBase = ShaderResourceBindingBase<IShaderResourceBindingVk, PipelineStateVkImpl>;
- ShaderResourceBindingVkImpl(IReferenceCounters* pRefCounters, class PipelineStateVkImpl* pPSO, bool IsPSOInternal);
+ ShaderResourceBindingVkImpl(IReferenceCounters* pRefCounters,
+ PipelineStateVkImpl* pPSO,
+ bool IsPSOInternal);
~ShaderResourceBindingVkImpl();
virtual void DILIGENT_CALL_TYPE QueryInterface(const INTERFACE_ID& IID, IObject** ppInterface) override final;