mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-04 03:58:59 +00:00
Some checks are pending
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
Canary release job / Create GitLab Release (push) Blocked by required conditions
Update NuGet packages, fix version string in plist for macOS
16 lines
290 B
C#
16 lines
290 B
C#
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,
|
|
}
|
|
}
|