glLoadMatrixf vs glMultMatrixf

Started by
1 comment, last by BladeWise 18 years, 10 months ago
I remember I read somewhere that it's better to call glLoadIndentity(); glMultMatrixf(matrix); instead of glLoadMatrix(matrix); Am I wrong? If not, why is it so?
Advertisement
They accomplish exactly the same thing.

So, in a very marginal way, I suppose the second one (LoadMatrixf) is better because it only takes one call and avoids a matrix mult internally.
SlimDX | Ventspace Blog | Twitter | Diverse teams make better games. I am currently hiring capable C++ engine developers in Baltimore, MD.
Thnx, even if marginal... less call is better! :D

This topic is closed to new replies.

Advertisement