blob: 5a38259e27605f509f33fc0af3be9a87c2b02643 (
plain) (
tree)
|
|
using System.Runtime.InteropServices;
namespace Ryujinx.Graphics.Texture
{
[StructLayout(LayoutKind.Sequential, Pack = 1, Size = 12)]
public struct Bpp12Pixel
{
private ulong _elem1;
private uint _elem2;
}
}
|