1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-18 18:32:02 +00:00

Log failed format conversions

This commit is contained in:
Isaac Marovitz 2024-05-31 14:03:38 +01:00 committed by Isaac Marovitz
parent 66e2533c90
commit d0946213fa

View file

@ -180,6 +180,11 @@ namespace Ryujinx.Graphics.Metal
}
}
if (mtlFormat == MTLPixelFormat.Invalid)
{
Logger.Error?.PrintMsg(LogClass.Gpu, $"Application requested {format}, no direct equivalent was found!");
}
return mtlFormat;
}
}