Starting to add cascading shadow maps

This commit is contained in:
2025-07-14 21:10:07 +02:00
parent cc22f10565
commit 9bd1ca1b09
18 changed files with 282 additions and 172 deletions
+4 -1
View File
@@ -535,8 +535,11 @@ template <typename T, size_t N> struct StaticArray {
}
}
}
constexpr StaticArray(const StaticArray& other) = default;
constexpr StaticArray(StaticArray&& other) = default;
constexpr ~StaticArray() {}
constexpr StaticArray& operator=(const StaticArray& other) = default;
constexpr StaticArray& operator=(StaticArray&& other) = default;
constexpr size_type size() const { return N; }
constexpr pointer data() { return _data; }
constexpr const_pointer data() const { return _data; }