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