rjx-mirror/src/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs
2023-04-27 23:51:14 +02: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; }
}
}