Merge pull request #59896 from akien-mga/dynamicbvh-crash

This commit is contained in:
Rémi Verschelde 2022-04-05 02:20:40 +02:00 committed by GitHub
commit 3ffe7004dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -183,7 +183,7 @@ private:
Node *parent = nullptr;
union {
Node *childs[2];
void *data = nullptr;
void *data;
};
_FORCE_INLINE_ bool is_leaf() const { return childs[1] == nullptr; }
@ -215,7 +215,10 @@ private:
return axis.dot(volume.get_center() - org) <= 0;
}
Node() {}
Node() {
childs[0] = nullptr;
childs[1] = nullptr;
}
};
PagedAllocator<Node> node_allocator;