Bpp12Pixel.cs 244 B

1234567891011
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.Graphics.Texture
  3. {
  4. [StructLayout(LayoutKind.Sequential, Pack = 1, Size = 12)]
  5. public struct Bpp12Pixel
  6. {
  7. private ulong _elem1;
  8. private uint _elem2;
  9. }
  10. }