mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-26 07:39:52 -06:00
Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.Graphics.Vic/ResourceManager.cs
Normal file
19
src/Ryujinx.Graphics.Vic/ResourceManager.cs
Normal file
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user