- In commit b3facaa6bb, the copyright header was
updated to include "Citron Homebrew Project" across multiple files, regardless
of whether any contributions were made.
- This commit removes the incorrect attribution and reverts the copyright header
to its previous state.
- Copyright attribution should only be added when meaningful contributions have
been made to the file.
- This commit ensures proper compliance with copyright standards and maintains
correct attribution to the respective contributors.
- Special thanks to Tachi for pointing out the need for these corrections and
ensuring that proper attribution practices are followed.
25 lines
797 B
C++
25 lines
797 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <type_traits>
|
|
|
|
namespace Common {
|
|
|
|
/// Ceiled integer division.
|
|
template <typename N, typename D>
|
|
requires std::is_integral_v<N> && std::is_unsigned_v<D>
|
|
[[nodiscard]] constexpr N DivCeil(N number, D divisor) {
|
|
return static_cast<N>((static_cast<D>(number) + divisor - 1) / divisor);
|
|
}
|
|
|
|
/// Ceiled integer division with logarithmic divisor in base 2
|
|
template <typename N, typename D>
|
|
requires std::is_integral_v<N> && std::is_unsigned_v<D>
|
|
[[nodiscard]] constexpr N DivCeilLog2(N value, D alignment_log2) {
|
|
return static_cast<N>((static_cast<D>(value) + (D(1) << alignment_log2) - 1) >> alignment_log2);
|
|
}
|
|
|
|
} // namespace Common
|