[d3d9] add D3DFMT_UNKNOWN to windowed BackBufferFormat

This commit is contained in:
Blisto91 2022-07-08 21:00:12 +02:00 committed by Philip Rebohle
parent 95995041b0
commit 64d2260656
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ namespace dxvk {
|| BackBufferFormat == D3D9Format::X8R8G8B8
|| BackBufferFormat == D3D9Format::A1R5G5B5
|| BackBufferFormat == D3D9Format::X1R5G5B5
|| BackBufferFormat == D3D9Format::R5G6B5;
|| BackBufferFormat == D3D9Format::R5G6B5
|| BackBufferFormat == D3D9Format::Unknown;
}
}