mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-09-27 14:51:57 +00:00
18 lines
383 B
C#
18 lines
383 B
C#
using Ryujinx.Graphics.Gpu.Memory;
|
|
using Ryujinx.Graphics.Nvdec.Image;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
readonly struct ResourceManager
|
|
{
|
|
public MemoryManager Gmm { get; }
|
|
public SurfaceCache Cache { get; }
|
|
|
|
public ResourceManager(MemoryManager gmm, SurfaceCache cache)
|
|
{
|
|
Gmm = gmm;
|
|
Cache = cache;
|
|
}
|
|
}
|
|
}
|