Explorar el Código

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>
C1fer hace 4 años
padre
commit
c54a14d0b8
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs

+ 1 - 0
Ryujinx.Graphics.Vic/Image/SurfaceWriter.cs

@@ -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: