1 2 3 4 5 6 7 8 9 10 11 12
using System; namespace Ryujinx.Graphics.Vulkan { [Flags] internal enum FeedbackLoopAspects { None = 0, Color = 1 << 0, Depth = 1 << 1, } }