mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 07:11:44 +00:00
Swap BGR565 components by changing the format (#2577)
This commit is contained in:
parent
6d9bc7cf90
commit
5b8ceb9173
1 changed files with 12 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue