mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
c26ddd6259
* Fix 3 graphics related bugs * OGLShader shouldn't be public (yet)
37 lines
723 B
C#
37 lines
723 B
C#
using System.Threading;
|
|
|
|
namespace Ryujinx.HLE.OsHle.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;
|
|
|
|
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) + 1;
|
|
}
|
|
}
|
|
} |