summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineMetal
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/GraphicsEngineMetal
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/GraphicsEngineMetal')
-rw-r--r--Graphics/GraphicsEngineMetal/include/ShaderResourceBindingMtlImpl.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Graphics/GraphicsEngineMetal/include/ShaderResourceBindingMtlImpl.h b/Graphics/GraphicsEngineMetal/include/ShaderResourceBindingMtlImpl.h
index 2b33c4b4..70b2cfde 100644
--- a/Graphics/GraphicsEngineMetal/include/ShaderResourceBindingMtlImpl.h
+++ b/Graphics/GraphicsEngineMetal/include/ShaderResourceBindingMtlImpl.h
@@ -34,16 +34,16 @@
namespace Diligent
{
-class FixedBlockMemoryAllocator;
+class PipelineStateMtlImpl;
/// Implementation of the Diligent::IShaderResourceBindingMtl interface
-class ShaderResourceBindingMtlImpl final : public ShaderResourceBindingBase<IShaderResourceBindingMtl>
+class ShaderResourceBindingMtlImpl final : public ShaderResourceBindingBase<IShaderResourceBindingMtl, PipelineStateMtlImpl>
{
public:
- using TBase = ShaderResourceBindingBase<IShaderResourceBindingMtl>;
+ using TBase = ShaderResourceBindingBase<IShaderResourceBindingMtl, PipelineStateMtlImpl>;
- ShaderResourceBindingMtlImpl(IReferenceCounters* pRefCounters,
- class PipelineStateMtlImpl* pPSO,
- bool IsInternal);
+ ShaderResourceBindingMtlImpl(IReferenceCounters* pRefCounters,
+ PipelineStateMtlImpl* pPSO,
+ bool IsInternal);
~ShaderResourceBindingMtlImpl();
virtual void QueryInterface(const Diligent::INTERFACE_ID& IID, IObject** ppInterface) override final;