2018-06-24 02:39:25 +02:00
|
|
|
namespace Ryujinx.Graphics.Gal
|
|
|
|
{
|
|
|
|
public interface IGalTexture
|
|
|
|
{
|
2018-07-10 04:01:59 +02:00
|
|
|
void LockCache();
|
|
|
|
void UnlockCache();
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
void Create(long Key, int Size, GalImage Image);
|
2018-06-24 02:39:25 +02:00
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
void Create(long Key, byte[] Data, GalImage Image);
|
2018-08-20 03:25:26 +02:00
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
bool TryGetImage(long Key, out GalImage Image);
|
2018-06-24 02:39:25 +02:00
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
void Bind(long Key, int Index, GalImage Image);
|
2018-06-24 02:39:25 +02:00
|
|
|
|
|
|
|
void SetSampler(GalTextureSampler Sampler);
|
|
|
|
}
|
|
|
|
}
|