1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-11 04:29:15 +01:00

[d3d10] Implement CheckFormatSupport

This commit is contained in:
Philip Rebohle 2018-08-12 01:01:04 +02:00
parent 589bc50842
commit 5e11c8a8d1
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -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);
}