MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / SetFlushToZero

Method SetFlushToZero

common/FPControl.h:92–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90 }
91
92 __fi constexpr FPControlRegister SetFlushToZero(bool ftz)
93 {
94 if (ftz)
95 bitmask |= FLUSH_TO_ZERO_BIT;
96 else
97 bitmask &= ~FLUSH_TO_ZERO_BIT;
98 return *this;
99 }
100
101 __fi constexpr bool operator==(const FPControlRegister& rhs) const { return bitmask == rhs.bitmask; }
102 __fi constexpr bool operator!=(const FPControlRegister& rhs) const { return bitmask != rhs.bitmask; }

Callers 2

Pcsx2Config.cppFile · 0.80
LoadSaveMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected