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/Parameter/MemoryPoolInParameter.cs | 33 ++++++++++++++++++++++
1 file changed, 33 insertions(+)
create mode 100644 src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
(limited to 'src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs')
diff --git a/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
new file mode 100644
index 00000000..242e3843
--- /dev/null
+++ b/src/Ryujinx.Audio/Renderer/Parameter/MemoryPoolInParameter.cs
@@ -0,0 +1,33 @@
+using Ryujinx.Audio.Renderer.Common;
+using System.Runtime.InteropServices;
+using CpuAddress = System.UInt64;
+
+namespace Ryujinx.Audio.Renderer.Parameter
+{
+ ///
+ /// Input information for a memory pool.
+ ///
+ [StructLayout(LayoutKind.Sequential, Pack = 1)]
+ public struct MemoryPoolInParameter
+ {
+ ///
+ /// The CPU address used by the memory pool.
+ ///
+ public CpuAddress CpuAddress;
+
+ ///
+ /// The size used by the memory pool.
+ ///
+ public ulong Size;
+
+ ///
+ /// The target state the user wants.
+ ///
+ public MemoryPoolUserState State;
+
+ ///
+ /// Reserved/unused.
+ ///
+ private unsafe fixed uint _reserved[3];
+ }
+}
\ No newline at end of file
--
cgit v1.2.3