Fixed decompose warnings #373

This commit is contained in:
Christophe Riccio
2015-08-01 11:35:57 +02:00
parent 37d4ca9c4c
commit 1e502c0919
3 changed files with 26 additions and 15 deletions

View File

@@ -35,5 +35,15 @@ int main()
{
int Error(0);
glm::mat4 Matrix(1);
glm::vec3 Scale;
glm::quat Orientation;
glm::vec3 Translation;
glm::vec3 Skew(1);
glm::vec4 Perspective(1);
glm::decompose(Matrix, Scale, Orientation, Translation, Skew, Perspective);
return Error;
}