Provisional light culling

This commit is contained in:
Dynamitos
2021-05-10 23:57:55 +02:00
parent 0cf13bcff5
commit e00b382d4a
41 changed files with 1072 additions and 330 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ namespace Seele
_data = new T[other.allocated];
assert(_data != nullptr);
markIteratorDirty();
std::copy(other.begin(), other.end(), beginIt);
std::copy(other.begin(), other.end(), begin());
}
Array(Array &&other) noexcept
: arraySize(std::move(other.arraySize))
@@ -97,7 +97,7 @@ namespace Seele
}
arraySize = other.arraySize;
markIteratorDirty();
std::copy(other.begin(), other.end(), beginIt);
std::copy(other.begin(), other.end(), begin());
}
return *this;
}