diff --git a/src/d3d9/d3d9_adapter.cpp b/src/d3d9/d3d9_adapter.cpp index d0a91aac..faf9a038 100644 --- a/src/d3d9/d3d9_adapter.cpp +++ b/src/d3d9/d3d9_adapter.cpp @@ -251,7 +251,8 @@ namespace dxvk { D3D9Format SourceFormat, D3D9Format TargetFormat) { bool sourceSupported = SourceFormat != D3D9Format::Unknown - && IsSupportedBackBufferFormat(SourceFormat); + && (IsSupportedBackBufferFormat(SourceFormat) + || (IsFourCCFormat(SourceFormat) && !IsVendorFormat(SourceFormat))); bool targetSupported = TargetFormat == D3D9Format::X1R5G5B5 || TargetFormat == D3D9Format::A1R5G5B5 || TargetFormat == D3D9Format::R5G6B5 diff --git a/src/d3d9/d3d9_format.h b/src/d3d9/d3d9_format.h index a8927a9c..4efbd07d 100644 --- a/src/d3d9/d3d9_format.h +++ b/src/d3d9/d3d9_format.h @@ -230,6 +230,7 @@ namespace dxvk { && format != D3D9Format::MULTI2_ARGB8 && format != D3D9Format::UYVY && format != D3D9Format::R8G8_B8G8 + && format != D3D9Format::YUY2 && format != D3D9Format::G8R8_G8B8 && format != D3D9Format::DXT1 && format != D3D9Format::DXT2