aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.GAL/BufferAccess.cs
blob: faefa51882ba48428ed215edffad103837980471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace Ryujinx.Graphics.GAL
{
    [Flags]
    public enum BufferAccess
    {
        Default = 0,
        FlushPersistent = 1 << 0,
        Stream = 1 << 1,
        SparseCompatible = 1 << 2,
    }
}