From 4f5a4499cf0eee3761788eb6a422cd25e02ace40 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 4 Mar 2021 12:46:21 -0800 Subject: Refactored passing template arguments to base classes --- Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Graphics/GraphicsEngineD3DBase') diff --git a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.hpp b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.hpp index 1f245a6d..558af369 100644 --- a/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.hpp +++ b/Graphics/GraphicsEngineD3DBase/include/RenderDeviceD3DBase.hpp @@ -39,15 +39,15 @@ namespace Diligent /// Base implementation of a D3D render device -template -class RenderDeviceD3DBase : public RenderDeviceBase +template +class RenderDeviceD3DBase : public RenderDeviceBase { public: RenderDeviceD3DBase(IReferenceCounters* pRefCounters, IMemoryAllocator& RawMemAllocator, IEngineFactory* pEngineFactory, Uint32 NumDeferredContexts) : - RenderDeviceBase{pRefCounters, RawMemAllocator, pEngineFactory, NumDeferredContexts} + RenderDeviceBase{pRefCounters, RawMemAllocator, pEngineFactory, NumDeferredContexts} { // Flag texture formats always supported in D3D11 and D3D12 -- cgit v1.2.3