diff options
Diffstat (limited to 'src/Ryujinx.Graphics.Vic/ResourceManager.cs')
-rw-r--r-- | src/Ryujinx.Graphics.Vic/ResourceManager.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Ryujinx.Graphics.Vic/ResourceManager.cs b/src/Ryujinx.Graphics.Vic/ResourceManager.cs new file mode 100644 index 00000000..7c3f507e --- /dev/null +++ b/src/Ryujinx.Graphics.Vic/ResourceManager.cs @@ -0,0 +1,19 @@ +using Ryujinx.Graphics.Gpu.Memory; +using Ryujinx.Graphics.Vic.Image; + +namespace Ryujinx.Graphics.Vic +{ + readonly struct ResourceManager + { + public MemoryManager Gmm { get; } + public BufferPool<Pixel> SurfacePool { get; } + public BufferPool<byte> BufferPool { get; } + + public ResourceManager(MemoryManager gmm, BufferPool<Pixel> surfacePool, BufferPool<byte> bufferPool) + { + Gmm = gmm; + SurfacePool = surfacePool; + BufferPool = bufferPool; + } + } +} |