aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/IGalConstBuffer.cs
blob: 37545b2a999f1606f82a3dbf36385024191141c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
    }
}