mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-30 08:36:25 +02:00
misc: chore: Use collection expressions in Gpu project
This commit is contained in:
parent
ae90db2040
commit
aa0cb50c5d
41 changed files with 365 additions and 304 deletions
|
@ -103,11 +103,11 @@ namespace Ryujinx.Graphics.Gpu.Image
|
|||
|
||||
for (int stage = 0; stage < stages; stage++)
|
||||
{
|
||||
_textureBindings[stage] = Array.Empty<TextureBindingInfo>();
|
||||
_imageBindings[stage] = Array.Empty<TextureBindingInfo>();
|
||||
_textureBindings[stage] = [];
|
||||
_imageBindings[stage] = [];
|
||||
}
|
||||
|
||||
_textureCounts = Array.Empty<int>();
|
||||
_textureCounts = [];
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue