mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 15:17:43 +02:00
15 lines
241 B
C#
15 lines
241 B
C#
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
enum VideoType
|
|
{
|
|
U8 = 0,
|
|
U16 = 1,
|
|
U32 = 2,
|
|
|
|
Signed = 1 << 2,
|
|
|
|
S8 = Signed | U8,
|
|
S16 = Signed | U16,
|
|
S32 = Signed | U32
|
|
}
|
|
}
|