Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs
Normal file
19
src/Ryujinx.Graphics.Shader/CodeGen/Spirv/OperationResult.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Ryujinx.Graphics.Shader.Translation;
|
||||
using Spv.Generator;
|
||||
|
||||
namespace Ryujinx.Graphics.Shader.CodeGen.Spirv
|
||||
{
|
||||
readonly 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user