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