1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-05 22:42:56 -06:00
2021-04-13 03:09:42 +02:00

15 lines
277 B
C#

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