mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-27 04:49:56 +00:00
11 lines
288 B
C#
11 lines
288 B
C#
namespace ARMeilleure.State
|
|
{
|
|
public enum FPRoundingMode
|
|
{
|
|
ToNearest = 0, // With ties to even.
|
|
TowardsPlusInfinity = 1,
|
|
TowardsMinusInfinity = 2,
|
|
TowardsZero = 3,
|
|
ToNearestAway = 4 // With ties to away.
|
|
}
|
|
}
|