mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-05 12:55:46 +00:00
Move solution and projects to src
This commit is contained in:
10
src/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs
Normal file
10
src/Ryujinx.Graphics.Vulkan/Effects/IPostProcessingEffect.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Vulkan.Effects
|
||||
{
|
||||
internal interface IPostProcessingEffect : IDisposable
|
||||
{
|
||||
const int LocalGroupSize = 64;
|
||||
TextureView Run(TextureView view, CommandBufferScoped cbs, int width, int height);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user