mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-21 07:17:53 +01:00
17 lines
339 B
C#
17 lines
339 B
C#
namespace Penumbra.Interop.Structs;
|
|
|
|
public static class ShaderPackageUtility
|
|
{
|
|
[StructLayout(LayoutKind.Explicit, Size = 0xC)]
|
|
public unsafe struct Sampler
|
|
{
|
|
[FieldOffset(0x0)]
|
|
public uint Crc;
|
|
|
|
[FieldOffset(0x4)]
|
|
public uint Id;
|
|
|
|
[FieldOffset(0xA)]
|
|
public ushort Slot;
|
|
}
|
|
}
|