Compare commits

...

1 Commits

Author SHA1 Message Date
Berkan Diler
b96794e72b Use new LINQ Order() methods (#3851) 2022-11-16 15:17:03 -03:00
2 changed files with 3 additions and 3 deletions

View File

@@ -525,7 +525,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
private static void DeclareInputAttributesPerPatch(CodeGenContext context, HashSet<int> attrs) private static void DeclareInputAttributesPerPatch(CodeGenContext context, HashSet<int> attrs)
{ {
foreach (int attr in attrs.OrderBy(x => x)) foreach (int attr in attrs.Order())
{ {
DeclareInputAttributePerPatch(context, attr); DeclareInputAttributePerPatch(context, attr);
} }
@@ -658,7 +658,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
private static void DeclareUsedOutputAttributesPerPatch(CodeGenContext context, HashSet<int> attrs) private static void DeclareUsedOutputAttributesPerPatch(CodeGenContext context, HashSet<int> attrs)
{ {
foreach (int attr in attrs.OrderBy(x => x)) foreach (int attr in attrs.Order())
{ {
DeclareOutputAttributePerPatch(context, attr); DeclareOutputAttributePerPatch(context, attr);
} }

View File

@@ -207,7 +207,7 @@ namespace Ryujinx.Graphics.Shader.Translation
if (context.Config.NextUsedInputAttributesPerPatch != null) if (context.Config.NextUsedInputAttributesPerPatch != null)
{ {
foreach (int vecIndex in context.Config.NextUsedInputAttributesPerPatch.OrderBy(x => x)) foreach (int vecIndex in context.Config.NextUsedInputAttributesPerPatch.Order())
{ {
InitializeOutput(context, AttributeConsts.UserAttributePerPatchBase + vecIndex * 16, perPatch: true); InitializeOutput(context, AttributeConsts.UserAttributePerPatchBase + vecIndex * 16, perPatch: true);
} }