2019-10-13 06:02:07 +00:00
|
|
|
using Ryujinx.Graphics.GAL.Texture;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public interface ITexture : IDisposable
|
|
|
|
{
|
|
|
|
int Handle { get; }
|
|
|
|
|
2019-10-30 23:45:01 +00:00
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
2019-10-13 06:02:07 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|