This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
Ryujinx/Ryujinx.Graphics.OpenGL/Image/ITextureInfo.cs

11 lines
183 B
C#

using Ryujinx.Graphics.GAL;
namespace Ryujinx.Graphics.OpenGL.Image
{
interface ITextureInfo
{
int Handle { get; }
TextureCreateInfo Info { get; }
}
}