mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 11:45:10 +01:00
Add additional formats to Adreno filter
`VK_FORMAT_R32G32B32A32_SFLOAT` and `D32_SFLOAT` have their capabilities misreported as well, this spams the logs in titles such as ARMS.
This commit is contained in:
parent
b87295374e
commit
1d9b4a865a
@ -122,6 +122,8 @@ namespace skyline::gpu {
|
||||
|
||||
FMT("B5G6R5_UNORM_PACK16");
|
||||
FMT("R5G6B5_UNORM_PACK16");
|
||||
FMT("R32G32B32A32_SFLOAT");
|
||||
FMT("D32_SFLOAT");
|
||||
|
||||
#undef FMT
|
||||
|
||||
@ -139,6 +141,8 @@ namespace skyline::gpu {
|
||||
switch (format) {
|
||||
case vk::Format::eR5G6B5UnormPack16:
|
||||
case vk::Format::eB5G6R5UnormPack16:
|
||||
case vk::Format::eR32G32B32A32Sfloat:
|
||||
case vk::Format::eD32Sfloat:
|
||||
|
||||
case vk::Format::eBc1RgbUnormBlock:
|
||||
case vk::Format::eBc1RgbSrgbBlock:
|
||||
|
Loading…
Reference in New Issue
Block a user