mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 13:57:11 +02:00
misc: chore: Use collection expressions in Shader project
This commit is contained in:
parent
a5dbcb75d0
commit
95f9e548ca
38 changed files with 198 additions and 204 deletions
|
@ -631,7 +631,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
setAndBinding.SetIndex,
|
||||
setAndBinding.Binding,
|
||||
0,
|
||||
new[] { dest },
|
||||
[dest],
|
||||
sources));
|
||||
|
||||
return dest;
|
||||
|
@ -759,7 +759,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
setAndBinding.SetIndex,
|
||||
setAndBinding.Binding,
|
||||
compIndex,
|
||||
new[] { dest },
|
||||
[dest],
|
||||
sources));
|
||||
|
||||
return dest;
|
||||
|
@ -959,7 +959,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
setAndBinding.SetIndex,
|
||||
setAndBinding.Binding,
|
||||
0,
|
||||
new[] { dest },
|
||||
[dest],
|
||||
sources));
|
||||
|
||||
return dest;
|
||||
|
@ -983,7 +983,7 @@ namespace Ryujinx.Graphics.Shader.Translation
|
|||
setAndBinding.SetIndex,
|
||||
setAndBinding.Binding,
|
||||
compIndex,
|
||||
new[] { dest },
|
||||
[dest],
|
||||
sources));
|
||||
|
||||
return dest;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue