#ifndef INCLUDED_UTIL_BITCAST_H #define INCLUDED_UTIL_BITCAST_H #include #include #include namespace Util { #if __cplusplus >= 202002L #include #define FloatAsInt32(x) std::bit_cast(x) #define Int32AsFloat(x) std::bit_cast(x) #define Uint32AsFloat(x) std::bit_cast(x) #else template inline Dest bit_cast(Source const& source) { static_assert(sizeof(Dest) == sizeof(Source), "size of destination and source objects must be equal"); static_assert(std::is_trivially_copyable::value, "destination type must be trivially copyable."); static_assert(std::is_trivially_copyable::value, "source type must be trivially copyable"); Dest dest; std::memcpy(&dest, &source, sizeof(dest)); return dest; } #define FloatAsInt32(x) bit_cast(x) #define Int32AsFloat(x) bit_cast(x) #define Uint32AsFloat(x) bit_cast(x) #endif } // Util #endif // INCLUDED_UTIL_BITCAST_H