Update GLM version

Correctly initialize all values as they are no longer default-initialized
This commit is contained in:
Alexander Bock
2020-02-10 00:09:31 +01:00
parent b96fa43b27
commit 24ce773da9
143 changed files with 499 additions and 569 deletions
@@ -45,8 +45,8 @@ struct CameraKeyframe {
deserialize(buffer);
}
glm::dvec3 _position;
glm::dquat _rotation;
glm::dvec3 _position = glm::dvec3(0.0);
glm::dquat _rotation = glm::dquat(1.0, 0.0, 0.0, 0.0);
bool _followNodeRotation;
std::string _focusNode;
float _scale;