mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
553 B
C
23 lines
553 B
C
9 years ago
|
// This file is under the public domain.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cstddef>
|
||
|
#include <type_traits>
|
||
|
|
||
|
namespace Common {
|
||
|
|
||
|
template <typename T>
|
||
|
constexpr T AlignUp(T value, size_t size) {
|
||
|
static_assert(std::is_unsigned<T>::value, "T must be an unsigned value.");
|
||
|
return static_cast<T>(value + (size - value % size) % size);
|
||
|
}
|
||
|
|
||
|
template <typename T>
|
||
|
constexpr T AlignDown(T value, size_t size) {
|
||
|
static_assert(std::is_unsigned<T>::value, "T must be an unsigned value.");
|
||
|
return static_cast<T>(value - value % size);
|
||
|
}
|
||
|
|
||
|
} // namespace Common
|