Memory pool vectors (DVector) have been enormously simplified in code, and renamed to PoolVector

This commit is contained in:
Juan Linietsky
2017-01-07 18:25:37 -03:00
parent 2a38a5eaa8
commit 2ab83e1abb
257 changed files with 2818 additions and 3130 deletions

View File

@@ -169,9 +169,9 @@ AABB ReflectionProbe::get_aabb() const {
aabb.size=origin_offset+extents;
return aabb;
}
DVector<Face3> ReflectionProbe::get_faces(uint32_t p_usage_flags) const {
PoolVector<Face3> ReflectionProbe::get_faces(uint32_t p_usage_flags) const {
return DVector<Face3>();
return PoolVector<Face3>();
}
void ReflectionProbe::_validate_property(PropertyInfo& property) const {