diff --git a/Ryujinx.Graphics.Gpu/Memory/Buffer.cs b/Ryujinx.Graphics.Gpu/Memory/Buffer.cs index a0339cce69..e4bc161f8a 100644 --- a/Ryujinx.Graphics.Gpu/Memory/Buffer.cs +++ b/Ryujinx.Graphics.Gpu/Memory/Buffer.cs @@ -47,8 +47,6 @@ namespace Ryujinx.Graphics.Gpu.Memory HostBuffer = context.Renderer.CreateBuffer((int)size); _sequenceNumbers = new int[size / MemoryManager.PageSize]; - - Invalidate(); } /// @@ -152,14 +150,6 @@ namespace Ryujinx.Graphics.Gpu.Memory _context.PhysicalMemory.Write(address, data); } - /// - /// Invalidates all the buffer data, causing it to be read from guest memory. - /// - public void Invalidate() - { - HostBuffer.SetData(0, _context.PhysicalMemory.GetSpan(Address, Size)); - } - /// /// Disposes the host buffer. ///