1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-26 17:46:47 -06:00

14 lines
230 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
enum IntegerSize
{
U8 = 0,
S8 = 1,
U16 = 2,
S16 = 3,
B32 = 4,
B64 = 5,
B128 = 6,
UB128 = 7
}
}