lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I could use void glMultMatrixf (float m[16]), but in some functions  
I donĀ“t know the size of the array.
yes, you have to set the dimension; however, you can use a parameter  
to do that:
void GetArray (int n, float array[n]);

-- waldemar