mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:58:44 +00:00
f224769c49
* Implement Logical Operation registers and functionality. * Address Feedback 1
13 lines
242 B
C#
13 lines
242 B
C#
using Ryujinx.Graphics.GAL;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct LogicalOpState
|
|
{
|
|
#pragma warning disable CS0649
|
|
public Boolean32 Enable;
|
|
public LogicalOp LogicalOp;
|
|
#pragma warning restore CS0649
|
|
}
|
|
}
|