Update NDK, Gradle and dependencies + Improve Settings API + Migrate to PugiXML

This commit is contained in:
◱ PixelyIon
2021-01-22 08:32:01 +05:30
committed by ◱ Mark
parent 1f48fdd4a5
commit 80302cf1ad
30 changed files with 173 additions and 195 deletions

View File

@ -23,13 +23,7 @@ namespace skyline {
constexpr Dimensions(u32 width, u32 height, u32 depth) : width(width), height(height), depth(depth) {}
constexpr bool operator==(const Dimensions &dimensions) {
return (width == dimensions.width) && (height == dimensions.height) && (depth == dimensions.depth);
}
constexpr bool operator!=(const Dimensions &dimensions) {
return (width != dimensions.width) || (height != dimensions.height) || (depth != dimensions.depth);
}
auto operator<=>(const Dimensions &) const = default;
};
/**