IPostProcessingEffect.cs
1 using System; 2 3 namespace Ryujinx.Graphics.Vulkan.Effects 4 { 5 internal interface IPostProcessingEffect : IDisposable 6 { 7 const int LocalGroupSize = 64; 8 TextureView Run(TextureView view, CommandBufferScoped cbs, int width, int height); 9 } 10 }