diff --git a/src/d3d10/d3d10_device.cpp b/src/d3d10/d3d10_device.cpp index aff15f5f..0a14fc80 100644 --- a/src/d3d10/d3d10_device.cpp +++ b/src/d3d10/d3d10_device.cpp @@ -1568,14 +1568,19 @@ namespace dxvk { void STDMETHODCALLTYPE D3D10Device::SetTextFilterSize( UINT Width, UINT Height) { - Logger::err("D3D10Device::SetTextFilterSize: Not implemented"); + // D3D10 doesn't seem to actually store or do anything with these values, + // as when calling GetTextFilterSize, it just makes the values 0. } void STDMETHODCALLTYPE D3D10Device::GetTextFilterSize( UINT* pWidth, UINT* pHeight) { - Logger::err("D3D10Device::GetTextFilterSize: Not implemented"); + if (pWidth) + *pWidth = 0; + + if (pHeight) + *pHeight = 0; } -} \ No newline at end of file +}