mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Replace Common::BitCast with std::bit_cast
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
|
||||
#include "VideoCommon/BPMemory.h"
|
||||
|
||||
#include "Common/BitUtils.h"
|
||||
#include <bit>
|
||||
|
||||
// BP state
|
||||
// STATE_TO_SAVE
|
||||
@ -50,14 +50,14 @@ float FogParam0::FloatValue() const
|
||||
{
|
||||
// scale mantissa from 11 to 23 bits
|
||||
const u32 integral = (sign << 31) | (exp << 23) | (mant << 12);
|
||||
return Common::BitCast<float>(integral);
|
||||
return std::bit_cast<float>(integral);
|
||||
}
|
||||
|
||||
float FogParam3::FloatValue() const
|
||||
{
|
||||
// scale mantissa from 11 to 23 bits
|
||||
const u32 integral = (c_sign << 31) | (c_exp << 23) | (c_mant << 12);
|
||||
return Common::BitCast<float>(integral);
|
||||
return std::bit_cast<float>(integral);
|
||||
}
|
||||
|
||||
float FogParams::GetA() const
|
||||
|
Reference in New Issue
Block a user