load matrix [][] ??

Hello.
I’m wondering if I can load a float array, float[][], to open GL using glLoadMatrixf ??
if that’s not possible I supose I just could create a method that transforms it to a normal float [], that would’t affect the performance, would it?

//HermanssoN

You cannot use float[][], it is written in the documentation.

[quote]void glLoadMatrixf(float[] m, int m_offset)
Interface to C language function:
void glLoadMatrixf(const GLfloat * m);
void glLoadMatrixf(FloatBuffer m)
Interface to C language function:
void glLoadMatrixf(const GLfloat * m);
[/quote]

Thnx