mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-12-20 06:44:06 +00:00
10 lines
228 B
C#
10 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);
|
|
}
|
|
}
|