mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 01:20:17 +00:00
13 lines
181 B
C#
13 lines
181 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Vulkan
|
||
|
{
|
||
|
[Flags]
|
||
|
internal enum FeedbackLoopAspects
|
||
|
{
|
||
|
None = 0,
|
||
|
Color = 1 << 0,
|
||
|
Depth = 1 << 1,
|
||
|
}
|
||
|
}
|