misc: chore: Remove redundant code

This commit is contained in:
KeatonTheBot
2025-03-11 16:45:41 -05:00
parent 340ec79e9f
commit 05a88ccc94
109 changed files with 271 additions and 412 deletions
@@ -4,17 +4,10 @@ namespace Ryujinx.Graphics.Shader.StructuredIr
{
class StructuredProgramInfo
{
public List<StructuredFunction> Functions { get; }
public List<StructuredFunction> Functions { get; } = [];
public HashSet<IoDefinition> IoDefinitions { get; }
public HashSet<IoDefinition> IoDefinitions { get; } = [];
public HelperFunctionsMask HelperFunctionsMask { get; set; }
public StructuredProgramInfo()
{
Functions = [];
IoDefinitions = [];
}
}
}