mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:28:34 +00:00
Added support for Pixel Format X8B8G8R8 (#2716)
* Added support for Pixel Format X8B8G8R8 Fixes cutscenes on Metroid Dread. * Removed unnecessary case execution. * Update Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: gdkchan <gab.dark.100@gmail.com>
This commit is contained in:
parent
468774578d
commit
c54a14d0b8
|
@ -15,6 +15,7 @@ namespace Ryujinx.Graphics.Vic.Image
|
|||
switch (config.OutPixelFormat)
|
||||
{
|
||||
case PixelFormat.A8B8G8R8:
|
||||
case PixelFormat.X8B8G8R8:
|
||||
WriteA8B8G8R8(rm, input, ref config, ref offsets);
|
||||
break;
|
||||
case PixelFormat.A8R8G8B8:
|
||||
|
|
Loading…
Reference in a new issue