mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:38:34 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
38 lines
752 B
C#
38 lines
752 B
C#
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;
|
|
public long DmaMapAddress;
|
|
|
|
private long Dupes;
|
|
|
|
public NvMapHandle()
|
|
{
|
|
Dupes = 1;
|
|
}
|
|
|
|
public NvMapHandle(int Size) : this()
|
|
{
|
|
this.Size = Size;
|
|
}
|
|
|
|
public void IncrementRefCount()
|
|
{
|
|
Interlocked.Increment(ref Dupes);
|
|
}
|
|
|
|
public long DecrementRefCount()
|
|
{
|
|
return Interlocked.Decrement(ref Dupes);
|
|
}
|
|
}
|
|
} |