2019-10-13 08:02:07 +02:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
2020-09-10 21:44:04 +02:00
|
|
|
public interface ITexture
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-07-07 04:41:07 +02:00
|
|
|
int Width { get; }
|
|
|
|
int Height { get; }
|
|
|
|
float ScaleFactor { get; }
|
|
|
|
|
2019-10-31 00:45:01 +01:00
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
2021-03-02 23:30:54 +01:00
|
|
|
void CopyTo(ITexture destination, int srcLayer, int dstLayer, int srcLevel, int dstLevel);
|
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);
|
2021-03-02 23:30:54 +01:00
|
|
|
void SetData(ReadOnlySpan<byte> data, int layer, int level);
|
2020-04-25 15:02:18 +02:00
|
|
|
void SetStorage(BufferRange buffer);
|
2020-09-10 21:44:04 +02:00
|
|
|
void Release();
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|