From 624e813cd3e5d782847c577c2da0cfb8a121fd18 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Thu, 23 Aug 2018 02:07:23 -0300 Subject: Implement multiple rendertarget attachments and depth writting (#375) * Add depth writting * Implement multiple attachments * Address feedback --- Ryujinx.Graphics/Gal/IGalFrameBuffer.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Ryujinx.Graphics/Gal/IGalFrameBuffer.cs') 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); -- cgit v1.2.3