mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-20 22:05:53 +01:00
12 lines
288 B
C#
12 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.
|
|
}
|
|
}
|