11 lines
228 B
C#
11 lines
228 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Metal.Effects
|
|
{
|
|
internal interface IPostProcessingEffect : IDisposable
|
|
{
|
|
const int LocalGroupSize = 64;
|
|
Texture Run(Texture view, int width, int height);
|
|
}
|
|
}
|