1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 05:53:30 +01:00
Ryujinx/Ryujinx.Graphics.GAL/ITexture.cs

21 lines
512 B
C#
Raw Normal View History

2019-10-13 07:02:07 +01:00
using Ryujinx.Graphics.GAL.Texture;
using System;
namespace Ryujinx.Graphics.GAL
{
public interface ITexture : IDisposable
{
int Handle { get; }
void CopyTo(ITexture destination);
void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter);
ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel);
int GetStorageDebugId();
byte[] GetData(int face);
void SetData(Span<byte> data);
}
}