mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
16 lines
307 B
C#
16 lines
307 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Graphics.Gal
|
|||
|
{
|
|||
|
public interface IGalConstBuffer
|
|||
|
{
|
|||
|
void LockCache();
|
|||
|
void UnlockCache();
|
|||
|
|
|||
|
void Create(long Key, long Size);
|
|||
|
|
|||
|
bool IsCached(long Key, long Size);
|
|||
|
|
|||
|
void SetData(long Key, long Size, IntPtr HostAddress);
|
|||
|
}
|
|||
|
}
|