blob: 5a38259e27605f509f33fc0af3be9a87c2b02643 (
plain) (
blame)
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 struct Bpp12Pixel
{
private ulong _elem1;
private uint _elem2;
}
}
|