opengl - how to use glm's operator== in stl algorithms? -


is possible use operators defined in glm::gtx::comparison in stl algorithms?

specifically have code:

std::vector<glm::ivec3> veca, vecb;    // vectors content bool result = std::equal(veca.begin(), veca.end(), vecb.begin()); 

this default fails cause operator== can't found.

that's open bug apparently.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -