mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:58:39 +00:00
21 lines
536 B
C#
21 lines
536 B
C#
using Ryujinx.Graphics.GAL.Texture;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface ITexture : IDisposable
|
|
{
|
|
int Handle { get; }
|
|
|
|
void CopyTo(ITexture destination, int firstLayer, int firstLevel);
|
|
void CopyTo(ITexture destination, Extents2D srcRegion, Extents2D dstRegion, bool linearFilter);
|
|
|
|
ITexture CreateView(TextureCreateInfo info, int firstLayer, int firstLevel);
|
|
|
|
int GetStorageDebugId();
|
|
|
|
byte[] GetData();
|
|
|
|
void SetData(Span<byte> data);
|
|
}
|
|
} |