1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-20 18:32:01 +00:00
Ryujinx/src/Ryujinx.Graphics.Metal/CounterEvent.cs
Isaac Marovitz 1cb2ec7ebc Formatting
2024-09-28 19:03:01 -04:00

23 lines
396 B
C#

using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.Metal
{
class CounterEvent : ICounterEvent
{
public CounterEvent()
{
Invalid = false;
}
public bool Invalid { get; set; }
public bool ReserveForHostAccess()
{
return true;
}
public void Flush() { }
public void Dispose() { }
}
}