forked from Mirror/Ryujinx
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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();
|
|
}
|
|
}
|