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