mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-30 20:42:22 -05:00
misc: chore: Use collection expressions in Vulkan project
This commit is contained in:
@@ -22,10 +22,10 @@ namespace Ryujinx.Graphics.Vulkan
|
||||
|
||||
public PipelineFull(VulkanRenderer gd, Device device) : base(gd, device)
|
||||
{
|
||||
_activeQueries = new List<(QueryPool, bool)>();
|
||||
_pendingQueryCopies = new();
|
||||
_backingSwaps = new();
|
||||
_activeBufferMirrors = new();
|
||||
_activeQueries = [];
|
||||
_pendingQueryCopies = [];
|
||||
_backingSwaps = [];
|
||||
_activeBufferMirrors = [];
|
||||
|
||||
CommandBuffer = (Cbs = gd.CommandBufferPool.Rent()).CommandBuffer;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user