2019-10-13 02:02:07 -04:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
2020-09-10 15:44:04 -04:00
|
|
|
public interface ITexture
|
2019-10-13 02:02:07 -04:00
|
|
|
{
|
2020-07-06 22:41:07 -04:00
|
|
|
int Width { get; }
|
|
|
|
int Height { get; }
|
|
|
|
float ScaleFactor { get; }
|
|
|
|
|
2019-10-30 19:45:01 -04:00
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
2021-03-02 17:30:54 -05:00
|
|
|
void CopyTo(ITexture destination, int srcLayer, int dstLayer, int srcLevel, int dstLevel);
|
2019-10-13 02:02:07 -04:00
|
|
|
void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter);
|
|
|
|
|
|
|
|
ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel);
|
|
|
|
|
2019-12-05 15:34:47 -05:00
|
|
|
byte[] GetData();
|
2019-10-13 02:02:07 -04:00
|
|
|
|
2020-01-12 18:27:50 -05:00
|
|
|
void SetData(ReadOnlySpan<byte> data);
|
2021-03-02 17:30:54 -05:00
|
|
|
void SetData(ReadOnlySpan<byte> data, int layer, int level);
|
2020-04-25 09:02:18 -04:00
|
|
|
void SetStorage(BufferRange buffer);
|
2020-09-10 15:44:04 -04:00
|
|
|
void Release();
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
}
|