2019-10-13 00:02:07 -06:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public interface ITexture : IDisposable
|
|
|
|
{
|
2019-10-30 17:45:01 -06:00
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
2019-10-13 00:02:07 -06:00
|
|
|
void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter);
|
|
|
|
|
|
|
|
ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel);
|
|
|
|
|
2019-12-05 13:34:47 -07:00
|
|
|
byte[] GetData();
|
2019-10-13 00:02:07 -06:00
|
|
|
|
2020-01-12 16:27:50 -07:00
|
|
|
void SetData(ReadOnlySpan<byte> data);
|
2019-10-13 00:02:07 -06:00
|
|
|
}
|
|
|
|
}
|