From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001
From: TSR Berry <20988865+TSRBerry@users.noreply.github.com>
Date: Sat, 8 Apr 2023 01:22:00 +0200
Subject: Move solution and projects to src
---
.../Renderer/Server/Effect/BufferMixEffect.cs | 49 ----------------------
1 file changed, 49 deletions(-)
delete mode 100644 Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
(limited to 'Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs')
diff --git a/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs b/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
deleted file mode 100644
index 82c0a055..00000000
--- a/Ryujinx.Audio/Renderer/Server/Effect/BufferMixEffect.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-using Ryujinx.Audio.Renderer.Common;
-using Ryujinx.Audio.Renderer.Parameter;
-using Ryujinx.Audio.Renderer.Parameter.Effect;
-using Ryujinx.Audio.Renderer.Server.MemoryPool;
-using System.Diagnostics;
-using System.Runtime.InteropServices;
-
-namespace Ryujinx.Audio.Renderer.Server.Effect
-{
- ///
- /// Server state for a buffer mix effect.
- ///
- public class BufferMixEffect : BaseEffect
- {
- ///
- /// The buffer mix parameter.
- ///
- public BufferMixParameter Parameter;
-
- public override EffectType TargetEffectType => EffectType.BufferMix;
-
- public override void Update(out BehaviourParameter.ErrorInfo updateErrorInfo, ref EffectInParameterVersion1 parameter, PoolMapper mapper)
- {
- Update(out updateErrorInfo, ref parameter, mapper);
- }
-
- public override void Update(out BehaviourParameter.ErrorInfo updateErrorInfo, ref EffectInParameterVersion2 parameter, PoolMapper mapper)
- {
- Update(out updateErrorInfo, ref parameter, mapper);
- }
-
- public void Update(out BehaviourParameter.ErrorInfo updateErrorInfo, ref T parameter, PoolMapper mapper) where T : unmanaged, IEffectInParameter
- {
- Debug.Assert(IsTypeValid(ref parameter));
-
- UpdateParameterBase(ref parameter);
-
- Parameter = MemoryMarshal.Cast(parameter.SpecificData)[0];
- IsEnabled = parameter.IsEnabled;
-
- updateErrorInfo = new BehaviourParameter.ErrorInfo();
- }
-
- public override void UpdateForCommandGeneration()
- {
- UpdateUsageStateForCommandGeneration();
- }
- }
-}
\ No newline at end of file
--
cgit v1.2.3