aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/ICounterEvent.cs
blob: 13b15ae4b53f0529846ce9492422ff48293314c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Ryujinx.Graphics.GAL
{
    public interface ICounterEvent : IDisposable
    {
        bool Invalid { get; set; }

        bool ReserveForHostAccess();

        void Flush();
    }
}