I need to calculate a normal model matrix for doing normal mapping in GLSL shader.I want to make sure I am right on this:When I multiply view (camera model) matrix with geometry model matrix ,is the view matrix supposed to be already inverted ?It is not clear from the online examples like those found here and here .Also , I see in some cases people also transpose the resulting matrix.Why?So what is the right way to build a normal model matrix in OpenGL?
Currently I do it this way:
glm::mat4 view = inverse(GetCameraModel());
glm::mat3 normalModelMatr= glm::mat3(view * mesh.GetModel());
Is this the way to go ?