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 --- Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs (limited to 'Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs') diff --git a/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs b/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs deleted file mode 100644 index 44cd8213..00000000 --- a/Ryujinx.Graphics.Gpu/Engine/MmeShadowScratch.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Runtime.InteropServices; - -namespace Ryujinx.Graphics.Gpu.Engine -{ - /// - /// Represents temporary storage used by macros. - /// - [StructLayout(LayoutKind.Sequential, Size = 1024)] - struct MmeShadowScratch - { -#pragma warning disable CS0169 - private uint _e0; -#pragma warning restore CS0169 - public ref uint this[int index] => ref AsSpan()[index]; - public Span AsSpan() => MemoryMarshal.CreateSpan(ref _e0, 256); - } -} -- cgit v1.2.3