mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
18 lines
409 B
C#
18 lines
409 B
C#
using Ryujinx.Graphics.Device;
|
|
using Ryujinx.Graphics.Nvdec.Image;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec
|
|
{
|
|
readonly struct ResourceManager
|
|
{
|
|
public DeviceMemoryManager MemoryManager { get; }
|
|
public SurfaceCache Cache { get; }
|
|
|
|
public ResourceManager(DeviceMemoryManager mm, SurfaceCache cache)
|
|
{
|
|
MemoryManager = mm;
|
|
Cache = cache;
|
|
}
|
|
}
|
|
}
|