diff options
| author | 2016-03-12 20:12:15 -0800 | |
|---|---|---|
| committer | 2016-03-12 20:12:15 -0800 | |
| commit | f62935d2787fdc43ed0f102bf967ae6f25fb6298 (patch) | |
| tree | 22939821529744351ef1fa1eb11b87c146774b48 /src/common | |
| parent | Merge pull request #1506 from lioncash/enum (diff) | |
| parent | PICA: Align vertex attributes (diff) | |
| download | yuzu-f62935d2787fdc43ed0f102bf967ae6f25fb6298.tar.gz yuzu-f62935d2787fdc43ed0f102bf967ae6f25fb6298.tar.xz yuzu-f62935d2787fdc43ed0f102bf967ae6f25fb6298.zip | |
Merge pull request #1496 from JayFoxRox/align-attribs
Align attribute components
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/common/alignment.h | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 959084cdf..1c9be718f 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -22,6 +22,7 @@ set(SRCS | |||
| 22 | ) | 22 | ) |
| 23 | 23 | ||
| 24 | set(HEADERS | 24 | set(HEADERS |
| 25 | alignment.h | ||
| 25 | assert.h | 26 | assert.h |
| 26 | bit_field.h | 27 | bit_field.h |
| 27 | bit_set.h | 28 | bit_set.h |
diff --git a/src/common/alignment.h b/src/common/alignment.h new file mode 100644 index 000000000..b77da4a92 --- /dev/null +++ b/src/common/alignment.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | // This file is under the public domain. | ||
| 2 | |||
| 3 | #pragma once | ||
| 4 | |||
| 5 | #include <cstddef> | ||
| 6 | #include <type_traits> | ||
| 7 | |||
| 8 | namespace Common { | ||
| 9 | |||
| 10 | template <typename T> | ||
| 11 | constexpr T AlignUp(T value, size_t size) { | ||
| 12 | static_assert(std::is_unsigned<T>::value, "T must be an unsigned value."); | ||
| 13 | return static_cast<T>(value + (size - value % size) % size); | ||
| 14 | } | ||
| 15 | |||
| 16 | template <typename T> | ||
| 17 | constexpr T AlignDown(T value, size_t size) { | ||
| 18 | static_assert(std::is_unsigned<T>::value, "T must be an unsigned value."); | ||
| 19 | return static_cast<T>(value - value % size); | ||
| 20 | } | ||
| 21 | |||
| 22 | } // namespace Common | ||