mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-22 00:43:13 +02: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…
Add table
Reference in a new issue