Home | History | Annotate | Download | only in opengl

Lines Matching full:minv

102      * @param mTransOffset an offset into mInv where the inverted matrix is
121 * @param mInv the array that holds the output inverted matrix
122 * @param mInvOffset an offset into mInv where the inverted matrix is
128 public static boolean invertM(float[] mInv, int mInvOffset, float[] m,
227 mInv[ mInvOffset] = dst0 * invdet;
228 mInv[ 1 + mInvOffset] = dst1 * invdet;
229 mInv[ 2 + mInvOffset] = dst2 * invdet;
230 mInv[ 3 + mInvOffset] = dst3 * invdet;
232 mInv[ 4 + mInvOffset] = dst4 * invdet;
233 mInv[ 5 + mInvOffset] = dst5 * invdet;
234 mInv[ 6 + mInvOffset] = dst6 * invdet;
235 mInv[ 7 + mInvOffset] = dst7 * invdet;
237 mInv[ 8 + mInvOffset] = dst8 * invdet;
238 mInv[ 9 + mInvOffset] = dst9 * invdet;
239 mInv[10 + mInvOffset] = dst10 * invdet;
240 mInv[11 + mInvOffset] = dst11 * invdet;
242 mInv[12 + mInvOffset] = dst12 * invdet;
243 mInv[13 + mInvOffset] = dst13 * invdet;
244 mInv[14 + mInvOffset] = dst14 * invdet;
245 mInv[15 + mInvOffset] = dst15 * invdet;