0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/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);
}
}