summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineNextGenBase
diff options
context:
space:
mode:
Diffstat (limited to 'Graphics/GraphicsEngineNextGenBase')
-rw-r--r--Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.hpp b/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.hpp
index cb059bca..173060fa 100644
--- a/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.hpp
+++ b/Graphics/GraphicsEngineNextGenBase/include/DeviceContextNextGenBase.hpp
@@ -38,13 +38,13 @@ namespace Diligent
/// Base implementation of the device context for next-generation backends.
-template <typename BaseInterface, typename ImplementationTraits>
-class DeviceContextNextGenBase : public DeviceContextBase<BaseInterface, ImplementationTraits>
+template <typename EngineImplTraits>
+class DeviceContextNextGenBase : public DeviceContextBase<EngineImplTraits>
{
public:
- using TBase = DeviceContextBase<BaseInterface, ImplementationTraits>;
- using DeviceImplType = typename ImplementationTraits::DeviceType;
- using ICommandQueueType = typename ImplementationTraits::ICommandQueueType;
+ using TBase = DeviceContextBase<EngineImplTraits>;
+ using DeviceImplType = typename EngineImplTraits::RenderDeviceImplType;
+ using ICommandQueueType = typename EngineImplTraits::CommandQueueInterface;
DeviceContextNextGenBase(IReferenceCounters* pRefCounters,
DeviceImplType* pRenderDevice,