mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-03 22:37:43 +02:00
17 lines
No EOL
425 B
C#
17 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |