diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-08-23 02:07:23 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-08-23 02:07:23 -0300 |
| commit | 624e813cd3e5d782847c577c2da0cfb8a121fd18 (patch) | |
| tree | fa12638a42a406f1736662f1a2fdee1d9f9bd014 /Ryujinx.Graphics/Gal/IGalFrameBuffer.cs | |
| parent | 9977acad0fe08ee98a8174ce1c5609be22ba67ee (diff) | |
Implement multiple rendertarget attachments and depth writting (#375)
* Add depth writting
* Implement multiple attachments
* Address feedback
Diffstat (limited to 'Ryujinx.Graphics/Gal/IGalFrameBuffer.cs')
| -rw-r--r-- | Ryujinx.Graphics/Gal/IGalFrameBuffer.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Gal/IGalFrameBuffer.cs b/Ryujinx.Graphics/Gal/IGalFrameBuffer.cs index bce1981a..108d3d9b 100644 --- a/Ryujinx.Graphics/Gal/IGalFrameBuffer.cs +++ b/Ryujinx.Graphics/Gal/IGalFrameBuffer.cs @@ -18,6 +18,8 @@ namespace Ryujinx.Graphics.Gal void Set(byte[] Data, int Width, int Height); + void SetMap(int[] Map); + void SetTransform(bool FlipX, bool FlipY, int Top, int Left, int Right, int Bottom); void SetWindowSize(int Width, int Height); |
