IGalConstBuffer.cs 307 B

12345678910111213141516
  1. using System;
  2. namespace Ryujinx.Graphics.Gal
  3. {
  4. public interface IGalConstBuffer
  5. {
  6. void LockCache();
  7. void UnlockCache();
  8. void Create(long Key, long Size);
  9. bool IsCached(long Key, long Size);
  10. void SetData(long Key, long Size, IntPtr HostAddress);
  11. }
  12. }