ScreenCaptureImageInfo.cs
1 namespace Ryujinx.Graphics.GAL 2 { 3 public readonly struct ScreenCaptureImageInfo 4 { 5 public ScreenCaptureImageInfo(int width, int height, bool isBgra, byte[] data, bool flipX, bool flipY) 6 { 7 Width = width; 8 Height = height; 9 IsBgra = isBgra; 10 Data = data; 11 FlipX = flipX; 12 FlipY = flipY; 13 } 14 15 public int Width { get; } 16 public int Height { get; } 17 public byte[] Data { get; } 18 public bool IsBgra { get; } 19 public bool FlipX { get; } 20 public bool FlipY { get; } 21 } 22 }