mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 11:57:43 +02: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();
|
|
}
|
|
}
|