mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 17:50:47 -07:00
Implement Logical Operation registers and functionality (#1380)
* Implement Logical Operation registers and functionality. * Address Feedback 1
This commit is contained in:
22
Ryujinx.Graphics.GAL/LogicalOp.cs
Normal file
22
Ryujinx.Graphics.GAL/LogicalOp.cs
Normal file
@ -0,0 +1,22 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public enum LogicalOp
|
||||
{
|
||||
Clear = 0x1500,
|
||||
And = 0x1501,
|
||||
AndReverse = 0x1502,
|
||||
Copy = 0x1503,
|
||||
AndInverted = 0x1504,
|
||||
Noop = 0x1505,
|
||||
Xor = 0x1506,
|
||||
Or = 0x1507,
|
||||
Nor = 0x1508,
|
||||
Equiv = 0x1509,
|
||||
Invert = 0x150A,
|
||||
OrReverse = 0x150B,
|
||||
CopyInverted = 0x150C,
|
||||
OrInverted = 0x150D,
|
||||
Nand = 0x150E,
|
||||
Set = 0x150F
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user