Ryujinx/Ryujinx.Graphics.Gpu/GpuContext.cs

122 lines
3.5 KiB
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
using Ryujinx.Graphics.GAL;
using Ryujinx.Graphics.Gpu.Engine;
using Ryujinx.Graphics.Gpu.Memory;
using System;
namespace Ryujinx.Graphics.Gpu
{
/// <summary>
/// GPU emulation context.
/// </summary>
2019-12-31 23:09:49 +01:00
public sealed class GpuContext : IDisposable
2019-10-13 08:02:07 +02:00
{
/// <summary>
/// Host renderer.
/// </summary>
2019-10-13 08:02:07 +02:00
public IRenderer Renderer { get; }
/// <summary>
/// Physical memory access (it actually accesses the process memory, not actual physical memory).
/// </summary>
internal PhysicalMemory PhysicalMemory { get; private set; }
2019-10-13 08:02:07 +02:00
/// <summary>
/// GPU memory manager.
/// </summary>
2019-10-13 08:02:07 +02:00
public MemoryManager MemoryManager { get; }
/// <summary>
/// GPU memory accessor.
/// </summary>
2020-01-01 01:08:02 +01:00
public MemoryAccessor MemoryAccessor { get; }
2019-10-13 08:02:07 +02:00
/// <summary>
/// GPU engine methods processing.
/// </summary>
2019-10-13 08:02:07 +02:00
internal Methods Methods { get; }
/// <summary>
/// GPU commands FIFO.
/// </summary>
2019-10-13 08:02:07 +02:00
internal NvGpuFifo Fifo { get; }
/// <summary>
/// DMA pusher.
/// </summary>
2019-10-13 08:02:07 +02:00
public DmaPusher DmaPusher { get; }
/// <summary>
/// Presentation window.
/// </summary>
public Window Window { get; }
/// <summary>
/// Internal sequence number, used to avoid needless resource data updates
/// in the middle of a command buffer before synchronizations.
/// </summary>
2019-10-13 08:02:07 +02:00
internal int SequenceNumber { get; private set; }
private readonly Lazy<Capabilities> _caps;
2019-10-13 08:02:07 +02:00
/// <summary>
/// Host hardware capabilities.
/// </summary>
2019-10-13 08:02:07 +02:00
internal Capabilities Capabilities => _caps.Value;
/// <summary>
/// Creates a new instance of the GPU emulation context.
/// </summary>
/// <param name="renderer">Host renderer</param>
2019-10-13 08:02:07 +02:00
public GpuContext(IRenderer renderer)
{
Renderer = renderer;
MemoryManager = new MemoryManager();
MemoryAccessor = new MemoryAccessor(this);
Methods = new Methods(this);
Fifo = new NvGpuFifo(this);
DmaPusher = new DmaPusher(this);
Window = new Window(this);
_caps = new Lazy<Capabilities>(Renderer.GetCapabilities);
2019-10-13 08:02:07 +02:00
}
/// <summary>
/// Advances internal sequence number.
/// This forces the update of any modified GPU resource.
/// </summary>
2019-10-13 08:02:07 +02:00
internal void AdvanceSequence()
{
SequenceNumber++;
}
/// <summary>
/// Sets the process memory manager, after the application process is initialized.
/// This is required for any GPU memory access.
/// </summary>
/// <param name="cpuMemory">CPU memory manager</param>
public void SetVmm(ARMeilleure.Memory.MemoryManager cpuMemory)
2019-10-13 08:02:07 +02:00
{
PhysicalMemory = new PhysicalMemory(cpuMemory);
2019-10-13 08:02:07 +02:00
}
2019-12-31 23:09:49 +01:00
/// <summary>
/// Disposes all GPU resources currently cached.
/// It's an error to push any GPU commands after disposal.
/// Additionally, the GPU commands FIFO must be empty for disposal,
/// and processing of all commands must have finished.
/// </summary>
public void Dispose()
{
Methods.ShaderCache.Dispose();
Methods.BufferManager.Dispose();
Methods.TextureManager.Dispose();
Renderer.Dispose();
2019-12-31 23:09:49 +01:00
}
2019-10-13 08:02:07 +02:00
}
}