You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, Metal does not appear to have a native equivalent to VK_FORMAT_B4G4R4A4_UNORM_PACK16 when I checked the supported packed 16-bit pixel formats. You could try VK_FORMAT_R4G4B4A4_UNORM_PACK16 instead if Vulkan gpuinfo is anything to go by. Also, VK_FORMAT_A1R5G5B5_UNORM_PACK16 has no equivalent as well in Metal.
If we had Vulkan extensions to use Metal formats would it be possible for you to use ABGR4Unorm in place of BGRA4Unorm and A1BGR5Unorm in place of A1RGB5Unorm too ?
When generating font or other data that doesn't need 8888. In this case, we auto-detect support and generate appropriately.
When uploading texture data directly from the PSP game.
So if the device doesn't natively support the PSP game's format, then we have to convert it. We already do this on Windows 7 with Direct3D 11, and this is just about extending that to Vulkan (when necessary.)
If we're already going to reprocess the PSP texture data into new RAM, I think moving it to 8888 is the simplest option, rather than trying to change it to another 16-bit format the device supports.
I think we'll just reuse the code used in DX11 on Windows 7 to avoid the 16-bit formats.
See #12583
The text was updated successfully, but these errors were encountered: