Ryujinx/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
riperiperi 999b64a587 Fix intel view copy workaround. (#2216)
The texture target must be taken from the storage rather than the view, when using the storage handle for the copy.
2024-02-22 19:15:43 -05:00

14 lines
280 B
C#

using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.OpenGL.Image
{
interface ITextureInfo
{
ITextureInfo Storage { get; }
int Handle { get; }
int FirstLayer => 0;
int FirstLevel => 0;
TextureCreateInfo Info { get; }
}
}