Basic shader compilation

This commit is contained in:
Dynamitos
2024-04-11 12:38:42 +02:00
parent c3be0e23e7
commit 77dc9ef3fd
24 changed files with 254 additions and 148 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ public:
{
_data = allocateArray(init.size());
assert(_data != nullptr);
std::uninitialized_copy(init.begin(), init.end(), begin());
std::uninitialized_move(init.begin(), init.end(), begin());
}
constexpr Array(const Array &other)