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
14
Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
Normal file
14
Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace Ryujinx.Graphics.Shader.Decoders
|
||||
{
|
||||
enum VideoPostOp
|
||||
{
|
||||
Mrg16h,
|
||||
Mrg16l,
|
||||
Mrg8b0,
|
||||
Mrg8b2,
|
||||
Acc,
|
||||
Min,
|
||||
Max,
|
||||
Pass
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue