mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-16 22:37:06 +00:00
13 lines
207 B
C#
13 lines
207 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface ICounterEvent : IDisposable
|
|
{
|
|
bool Invalid { get; set; }
|
|
|
|
bool ReserveForHostAccess();
|
|
|
|
void Flush();
|
|
}
|
|
}
|