ryujinx/src/Ryujinx.Graphics.GAL/ViewportSwizzle.cs
2025-05-30 17:08:34 -05:00

18 lines
330 B
C#

using System.Diagnostics.CodeAnalysis;
namespace Ryujinx.Graphics.GAL
{
public enum ViewportSwizzle
{
PositiveX = 0,
NegativeX = 1,
PositiveY = 2,
NegativeY = 3,
PositiveZ = 4,
NegativeZ = 5,
PositiveW = 6,
NegativeW = 7,
NegativeFlag = 1,
}
}