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