mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-28 22:37:10 +00:00
12 lines
181 B
C#
12 lines
181 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
[Flags]
|
|
internal enum FeedbackLoopAspects
|
|
{
|
|
None = 0,
|
|
Color = 1 << 0,
|
|
Depth = 1 << 1,
|
|
}
|
|
}
|