From 97b6b497cb42acb1e8c2ef7b0eb6f1d78590dd30 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 20 Aug 2020 13:44:16 -0700 Subject: D3D12 backend: removed ID3D12GraphicsCommandList5 that is not support by CI --- Graphics/GraphicsEngineD3D12/src/CommandContext.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'Graphics/GraphicsEngineD3D12') diff --git a/Graphics/GraphicsEngineD3D12/src/CommandContext.cpp b/Graphics/GraphicsEngineD3D12/src/CommandContext.cpp index da26de46..82bb8db8 100644 --- a/Graphics/GraphicsEngineD3D12/src/CommandContext.cpp +++ b/Graphics/GraphicsEngineD3D12/src/CommandContext.cpp @@ -48,9 +48,7 @@ CommandContext::CommandContext(CommandListManager& CmdListManager) : m_PendingResourceBarriers.reserve(MaxPendingBarriers); CmdListManager.CreateNewCommandList(&m_pCommandList, &m_pCurrentAllocator); #ifdef DILIGENT_DEBUG - if (CComQIPtr(m_pCommandList)) - m_DbgMaxInterfaceVer = 5; - else if (CComQIPtr(m_pCommandList)) + if (CComQIPtr(m_pCommandList)) m_DbgMaxInterfaceVer = 4; else if (CComQIPtr(m_pCommandList)) m_DbgMaxInterfaceVer = 3; -- cgit v1.2.3