JoshuaBrookover / bigg

bgfx, imgui, glfw, glm
The Unlicense
224 stars 35 forks source link

Updated glm #20

Closed widberg closed 5 years ago

widberg commented 5 years ago

Changes

Notes

In this version of glm there is no more default initialization of vector, matrix and quaternion types. Which means that if you want to construct an identity matrix you will need to use glm::mat4 mtx = glm::identity<glm::mat4>(); instead of glm::mat4 mtx;.

I have tested this on Windows and Linux.