mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 04:28:36 +00:00
15 lines
230 B
C#
15 lines
230 B
C#
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public enum ViewportSwizzle
|
|
{
|
|
PositiveX,
|
|
NegativeX,
|
|
PositiveY,
|
|
NegativeY,
|
|
PositiveZ,
|
|
NegativeZ,
|
|
PositiveW,
|
|
NegativeW
|
|
}
|
|
}
|