This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.Graphics/Gal/IGalConstBuffer.cs

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