
25 Sep
2008
25 Sep
'08
2:48 p.m.
2008/9/25 Bit Connor
withMatrix doesn't seem to have anything to do with glLoadMatrix.
You are right that you can do glLoadMatrix with loadIdentity and multMatrix.
To directly load a matrix, use the function "matrix" (with a Nothing argument). This will internally call the loadMatrix function that Krzysztof mentioned (which is correctly not exported).
Note that in addition to loading a matrix, the "matrix" function is also used for retrieving the current matrix. (glGetFloatv with argument GL_MODELVIEW_MATRIX and friends).
Ok, thank you, Thu