mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:58:40 +00:00
20 lines
487 B
C#
20 lines
487 B
C#
|
using Ryujinx.Graphics.Shader.Translation;
|
|||
|
using Spv.Generator;
|
|||
|
|
|||
|
namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
|||
|
{
|
|||
|
struct OperationResult
|
|||
|
{
|
|||
|
public static OperationResult Invalid => new OperationResult(AggregateType.Invalid, null);
|
|||
|
|
|||
|
public AggregateType Type { get; }
|
|||
|
public Instruction Value { get; }
|
|||
|
|
|||
|
public OperationResult(AggregateType type, Instruction value)
|
|||
|
{
|
|||
|
Type = type;
|
|||
|
Value = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|