mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 21:18:34 +00:00
1586450a38
* Implement VMNMX shader instruction * No need for the gap on the enum * Fix typo
16 lines
241 B
C#
16 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
|
|
}
|
|
}
|