From 5e11c8a8d1ae600661685ad3aa9eb9242bd35e3c Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sun, 12 Aug 2018 01:01:04 +0200 Subject: [PATCH] [d3d10] Implement CheckFormatSupport --- src/d3d10/d3d10_device.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/d3d10/d3d10_device.cpp b/src/d3d10/d3d10_device.cpp index 74be54ee1..38df51033 100644 --- a/src/d3d10/d3d10_device.cpp +++ b/src/d3d10/d3d10_device.cpp @@ -657,8 +657,7 @@ namespace dxvk { HRESULT STDMETHODCALLTYPE D3D10Device::CheckFormatSupport( DXGI_FORMAT Format, UINT* pFormatSupport) { - Logger::err("D3D10Device::CheckFormatSupport: Not implemented"); - return E_NOTIMPL; + return m_device->CheckFormatSupport(Format, pFormatSupport); }