mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 05:45:38 +00:00
583d237b2b
MSYS and probably a few Linux distros are now shipping GCC 13. The new standards and issues are listed here, https://gcc.gnu.org/gcc-13/porting_to.html
33 lines
1,021 B
C++
33 lines
1,021 B
C++
#ifndef INCLUDED_UTIL_BITCAST_H
|
|
#define INCLUDED_UTIL_BITCAST_H
|
|
|
|
#include <stdexcept>
|
|
#include <cstring>
|
|
#include <cstdint>
|
|
|
|
namespace Util
|
|
{
|
|
#if __cplusplus >= 202002L
|
|
#include <bit>
|
|
#define FloatAsInt32(x) std::bit_cast<int32_t>(x)
|
|
#define Int32AsFloat(x) std::bit_cast<float>(x)
|
|
#define Uint32AsFloat(x) std::bit_cast<float>(x)
|
|
#else
|
|
template <class Dest, class Source>
|
|
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<Dest>::value, "destination type must be trivially copyable.");
|
|
static_assert(std::is_trivially_copyable<Source>::value, "source type must be trivially copyable");
|
|
|
|
Dest dest;
|
|
std::memcpy(&dest, &source, sizeof(dest));
|
|
return dest;
|
|
}
|
|
#define FloatAsInt32(x) bit_cast<int32_t,float>(x)
|
|
#define Int32AsFloat(x) bit_cast<float,int32_t>(x)
|
|
#define Uint32AsFloat(x) bit_cast<float,uint32_t>(x)
|
|
#endif
|
|
} // Util
|
|
|
|
#endif // INCLUDED_UTIL_BITCAST_H
|