Implement VMNMX shader instruction (#1032)
* Implement VMNMX shader instruction * No need for the gap on the enum * Fix typo
This commit is contained in:
parent
56374c8633
commit
1586450a38
5 changed files with 232 additions and 4 deletions
15
Ryujinx.Graphics.Shader/Decoders/VideoType.cs
Normal file
15
Ryujinx.Graphics.Shader/Decoders/VideoType.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue