aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Device/AccessControl.cs
blob: 02203783ac453ea4442e88326778eb729f331029 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Device
{
    public enum AccessControl
    {
        None      = 0,
        ReadOnly  = 1 << 0,
        WriteOnly = 1 << 1,
        ReadWrite = ReadOnly | WriteOnly
    }
}