mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 06:37:43 +02:00
14 lines
No EOL
230 B
C#
14 lines
No EOL
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
|
|
}
|
|
} |