mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-21 08:10:53 -05:00
* Initial DrawTexture support & Advanced Present * TODO: Get Scissors Working * Chnage scissor state management * Rebase problems… * Rebase fixes again * Update DrawTexture + Fix Topology * Fix flipping * Add clear action support * Cleanup
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);
|
|
}
|
|
}
|