1
0
forked from MeloNX/MeloNX

Swap BGR565 components by changing the format (#2577)

This commit is contained in:
gdkchan 2021-08-26 17:47:21 -03:00 committed by GitHub
parent dab5af6899
commit 56571aa73c

View File

@ -204,7 +204,18 @@ namespace Ryujinx.Graphics.OpenGL.Image
if (forceBgra)
{
pixelFormat = PixelFormat.Bgra;
if (pixelType == PixelType.UnsignedShort565)
{
pixelType = PixelType.UnsignedShort565Reversed;
}
else if (pixelType == PixelType.UnsignedShort565Reversed)
{
pixelType = PixelType.UnsignedShort565;
}
else
{
pixelFormat = PixelFormat.Bgra;
}
}
int faces = 1;