mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 17:10:17 +00:00
23 lines
403 B
C#
23 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() { }
|
|
}
|
|
}
|