2019-10-13 08:02:07 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public interface ITexture : IDisposable
|
|
|
|
{
|
2019-10-31 00:45:01 +01:00
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
2019-10-13 08:02:07 +02:00
|
|
|
void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter);
|
|
|
|
|
|
|
|
ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel);
|
|
|
|
|
2019-12-05 21:34:47 +01:00
|
|
|
byte[] GetData();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2020-01-13 00:27:50 +01:00
|
|
|
void SetData(ReadOnlySpan<byte> data);
|
2020-04-25 15:02:18 +02:00
|
|
|
void SetStorage(BufferRange buffer);
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|