[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [tolua] How to pass or return float* ?
- From: Waldemar Celes <celes@...>
- Date: Fri, 2 Nov 2007 16:59:31 -0200
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