Hello!
I am writing my own matrix class and have a design problem:
jogl functions, which accept a matrix as float[] or FloatBuffer. I think i read somewhere in the forum that the float[] accepting functions convert them internal to a FloatBuffer. That would coast time.
On the other hand is using a FloatBuffer.in the matrix class more expansive than a float[]?
Should I use a FloatBuffer or float[]? Which is better? Or am I completely wrong?
Thanks for the help?