mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
15 lines
277 B
C#
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; }
|
|
}
|
|
}
|