1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-04 18:12:01 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvMap/NvMapHandle.cs

37 lines
716 B
C#
Raw Normal View History

using System.Threading;
namespace Ryujinx.HLE.HOS.Services.Nv.NvMap
{
class NvMapHandle
{
public int Handle;
public int Id;
public int Size;
public int Align;
public int Kind;
public long Address;
public bool Allocated;
2018-12-01 20:01:59 +00:00
private long _dupes;
public NvMapHandle()
{
2018-12-01 20:01:59 +00:00
_dupes = 1;
}
2018-12-01 20:01:59 +00:00
public NvMapHandle(int size) : this()
{
2018-12-01 20:24:37 +00:00
Size = size;
}
public void IncrementRefCount()
{
2018-12-01 20:01:59 +00:00
Interlocked.Increment(ref _dupes);
}
public long DecrementRefCount()
{
2018-12-01 20:01:59 +00:00
return Interlocked.Decrement(ref _dupes);
}
}
}