Pixel.cs 173 B

12345678910
  1. namespace Ryujinx.Graphics.Vic.Image
  2. {
  3. struct Pixel
  4. {
  5. public ushort R;
  6. public ushort G;
  7. public ushort B;
  8. public ushort A;
  9. }
  10. }