1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-10 23:36:39 +00:00
Ryujinx/Ryujinx.Graphics/Gal/IGalConstBuffer.cs

17 lines
352 B
C#
Raw Normal View History

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 SetData(long key, byte[] data);
}
}