diff options
| author | 2015-01-05 15:03:50 +0000 | |
|---|---|---|
| committer | 2015-01-05 15:03:50 +0000 | |
| commit | ffe4cc9c5a0038dc7b721acb362867e5b1fd18b9 (patch) | |
| tree | 4dacc04bb56dfb5bb4ba12348deeb2cad99bb8d1 | |
| parent | Merge pull request #418 from lioncash/qd (diff) | |
| download | yuzu-ffe4cc9c5a0038dc7b721acb362867e5b1fd18b9.tar.gz yuzu-ffe4cc9c5a0038dc7b721acb362867e5b1fd18b9.tar.xz yuzu-ffe4cc9c5a0038dc7b721acb362867e5b1fd18b9.zip | |
Common: Remove the unused x86-specific 128-bit float type.
| -rw-r--r-- | src/common/common_types.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/common_types.h b/src/common/common_types.h index c74c74f0f..0e86cb2cf 100644 --- a/src/common/common_types.h +++ b/src/common/common_types.h | |||
| @@ -26,7 +26,6 @@ | |||
| 26 | 26 | ||
| 27 | #include <cmath> | 27 | #include <cmath> |
| 28 | #include <cstdint> | 28 | #include <cstdint> |
| 29 | #include <xmmintrin.h> // data_types__m128.cpp | ||
| 30 | 29 | ||
| 31 | typedef std::uint8_t u8; ///< 8-bit unsigned byte | 30 | typedef std::uint8_t u8; ///< 8-bit unsigned byte |
| 32 | typedef std::uint16_t u16; ///< 16-bit unsigned short | 31 | typedef std::uint16_t u16; ///< 16-bit unsigned short |
| @@ -67,16 +66,6 @@ union t64 { | |||
| 67 | u8 _u8[8]; ///< 8-bit unsigned char(s) | 66 | u8 _u8[8]; ///< 8-bit unsigned char(s) |
| 68 | }; | 67 | }; |
| 69 | 68 | ||
| 70 | /// Union for fast 128-bit type casting | ||
| 71 | union t128 { | ||
| 72 | struct | ||
| 73 | { | ||
| 74 | t64 ps0; ///< 64-bit paired single 0 | ||
| 75 | t64 ps1; ///< 64-bit paired single 1 | ||
| 76 | }; | ||
| 77 | __m128 a; ///< 128-bit floating point (__m128 maps to the XMM[0-7] registers) | ||
| 78 | }; | ||
| 79 | |||
| 80 | namespace Common { | 69 | namespace Common { |
| 81 | /// Rectangle data structure | 70 | /// Rectangle data structure |
| 82 | class Rect { | 71 | class Rect { |