mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-21 02:12:01 +00:00
24 lines
403 B
C#
24 lines
403 B
C#
|
using Ryujinx.Graphics.GAL;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Metal
|
||
|
{
|
||
|
public class CounterEvent : ICounterEvent
|
||
|
{
|
||
|
|
||
|
public CounterEvent()
|
||
|
{
|
||
|
Invalid = false;
|
||
|
}
|
||
|
|
||
|
public bool Invalid { get; set; }
|
||
|
public bool ReserveForHostAccess()
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public void Flush() { }
|
||
|
|
||
|
public void Dispose() { }
|
||
|
}
|
||
|
}
|