mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 09:18:43 +00:00
13 lines
204 B
C#
13 lines
204 B
C#
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
enum IntegerSize
|
|
{
|
|
U8 = 0,
|
|
S8 = 1,
|
|
U16 = 2,
|
|
S16 = 3,
|
|
B32 = 4,
|
|
B64 = 5,
|
|
B128 = 6
|
|
}
|
|
} |