IGalConstBuffer.cs 352 B

1234567891011121314151617
  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. void SetData(long Key, byte[] Data);
  12. }
  13. }