Ryujinx/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs

20 lines
487 B
C#
Raw Normal View History

2021-08-12 06:09:56 +00:00
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;
}
}
}