diff options
Diffstat (limited to 'Ryujinx.Graphics.Vic/ResourceManager.cs')
-rw-r--r-- | Ryujinx.Graphics.Vic/ResourceManager.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Vic/ResourceManager.cs b/Ryujinx.Graphics.Vic/ResourceManager.cs new file mode 100644 index 00000000..036b30b6 --- /dev/null +++ b/Ryujinx.Graphics.Vic/ResourceManager.cs @@ -0,0 +1,19 @@ +using Ryujinx.Graphics.Gpu.Memory; +using Ryujinx.Graphics.Vic.Image; + +namespace Ryujinx.Graphics.Vic +{ + 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; + } + } +} |