aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.OpenGL/Effects/IPostProcessingEffect.cs
blob: 7a045a0212d92d52bfcf5769b6523a0afb154f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using Ryujinx.Graphics.OpenGL.Image;
using System;

namespace Ryujinx.Graphics.OpenGL.Effects
{
    internal interface IPostProcessingEffect :  IDisposable
    {
        const int LocalGroupSize = 64;
        TextureView Run(TextureView view, int width, int height);
    }
}