mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:58:44 +00:00
11 lines
274 B
C#
11 lines
274 B
C#
|
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);
|
||
|
}
|
||
|
}
|