mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:48:33 +00:00
17 lines
425 B
C#
17 lines
425 B
C#
namespace Ryujinx.Graphics.Gal.Shader
|
|
{
|
|
class ShaderIrCond : ShaderIrNode
|
|
{
|
|
public ShaderIrNode Pred { get; set; }
|
|
public ShaderIrNode Child { get; set; }
|
|
|
|
public bool Not { get; private set; }
|
|
|
|
public ShaderIrCond(ShaderIrNode Pred, ShaderIrNode Child, bool Not)
|
|
{
|
|
this.Pred = Pred;
|
|
this.Child = Child;
|
|
this.Not = Not;
|
|
}
|
|
}
|
|
} |