mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-08 00:43:04 +00:00
18 lines
374 B
C#
18 lines
374 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);
|
|||
|
|
|||
|
void Bind(GalShaderType ShaderType, int Index, long Key);
|
|||
|
}
|
|||
|
}
|