IPostProcessingEffect.cs 261 B

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