From d786d8d2b924da7cd116a2eb97d738a9f07b4e43 Mon Sep 17 00:00:00 2001 From: gdk Date: Wed, 30 Oct 2019 20:45:01 -0300 Subject: Support copy of slices to 3D textures, remove old 3D render target layered render support, do not delete textures with existing views created from them --- Ryujinx.Graphics.GAL/ITexture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.GAL/ITexture.cs') diff --git a/Ryujinx.Graphics.GAL/ITexture.cs b/Ryujinx.Graphics.GAL/ITexture.cs index 6b3f5c59..f170e374 100644 --- a/Ryujinx.Graphics.GAL/ITexture.cs +++ b/Ryujinx.Graphics.GAL/ITexture.cs @@ -7,7 +7,7 @@ namespace Ryujinx.Graphics.GAL { int Handle { get; } - void CopyTo(ITexture destination); + void CopyTo(ITexture destination, int firstLayer, int firstLevel); void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter); ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel); -- cgit v1.2.3