Ryujinx/src/Ryujinx.Graphics.GAL/BufferAccess.cs

14 lines
218 B
C#
Raw Normal View History

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