From 951700fdd8f54fb34ffe8a3fb328a68b5bf37abe Mon Sep 17 00:00:00 2001 From: Nicholas Rodine Date: Thu, 18 Aug 2022 11:04:54 -0500 Subject: Removed unused usings. (#3593) * Removed unused usings. * Added back using, now that it's used. * Removed extra whitespace. --- Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs | 2 -- Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs | 1 - Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs | 1 - 9 files changed, 10 deletions(-) (limited to 'Ryujinx.Audio/Renderer/Dsp/Command') diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs index d68f3def..e35911b2 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/BiquadFilterCommand.cs @@ -1,7 +1,6 @@ using Ryujinx.Audio.Renderer.Dsp.State; using Ryujinx.Audio.Renderer.Parameter; using System; -using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command { diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs index e9f7f943..ab1ea77d 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/CaptureBufferCommand.cs @@ -1,5 +1,4 @@ using Ryujinx.Audio.Renderer.Dsp.State; -using Ryujinx.Audio.Renderer.Parameter; using Ryujinx.Memory; using System; using System.Runtime.CompilerServices; diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs index 95aec99d..27cd6e84 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/CircularBufferSinkCommand.cs @@ -1,6 +1,5 @@ using Ryujinx.Audio.Renderer.Parameter.Sink; using Ryujinx.Audio.Renderer.Server.MemoryPool; -using System; using System.Diagnostics; namespace Ryujinx.Audio.Renderer.Dsp.Command diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs b/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs index e8c3ba24..2cbed9c2 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/CommandList.cs @@ -6,7 +6,6 @@ using Ryujinx.Memory; using System; using System.Buffers; using System.Collections.Generic; -using System.Diagnostics; using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs index 330b63a6..64c297d1 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/CopyMixBufferCommand.cs @@ -1,5 +1,3 @@ -using System; - namespace Ryujinx.Audio.Renderer.Dsp.Command { public class CopyMixBufferCommand : ICommand diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs index eb446a2b..e3a87c10 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/DepopForMixBuffersCommand.cs @@ -1,5 +1,4 @@ using System; -using System.Diagnostics; using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs b/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs index 98394a09..a393c885 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion1.cs @@ -2,7 +2,6 @@ using Ryujinx.Audio.Renderer.Dsp.State; using Ryujinx.Audio.Renderer.Parameter.Effect; using System; using System.Diagnostics; -using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command { diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs b/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs index ebc2eb1b..ad703de1 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/LimiterCommandVersion2.cs @@ -3,7 +3,6 @@ using Ryujinx.Audio.Renderer.Parameter; using Ryujinx.Audio.Renderer.Parameter.Effect; using System; using System.Diagnostics; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; namespace Ryujinx.Audio.Renderer.Dsp.Command diff --git a/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs b/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs index 0056ac5c..6df44b32 100644 --- a/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs +++ b/Ryujinx.Audio/Renderer/Dsp/Command/UpsampleCommand.cs @@ -1,6 +1,5 @@ using Ryujinx.Audio.Renderer.Server.Upsampler; using System; -using System.Runtime.CompilerServices; namespace Ryujinx.Audio.Renderer.Dsp.Command { -- cgit v1.2.3