You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function glm_mat2_copy from cglm/mat2.h internally uses glm_vec4_ucopy, defined inside cglm/vec4.h, which is not included. THis leads to symbol not being found.
Minimal example:
Function
glm_mat2_copy
from cglm/mat2.h internally usesglm_vec4_ucopy
, defined inside cglm/vec4.h, which is not included. THis leads to symbol not being found.Minimal example:
This will result in a
error LNK2019: unresolved external symbol _glm_vec4_ucopy referenced in function _glm_mat2_copy
on MSVC.A simple solution for this is to just add
#include <cglm/vec4.h>
into the cglm/mat2.h file.The text was updated successfully, but these errors were encountered: