Searched defs:mInv (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java126 * mInv and m must not overlap.
128 * @param mInv the array that holds the output inverted matrix
129 * @param mInvOffset an offset into mInv where the inverted matrix is
135 public static boolean invertM(float[] mInv, int mInvOffset, float[] m, argument
234 mInv[ mInvOffset] = dst0 * invdet;
235 mInv[ 1 + mInvOffset] = dst1 * invdet;
236 mInv[ 2 + mInvOffset] = dst2 * invdet;
237 mInv[ 3 + mInvOffset] = dst3 * invdet;
239 mInv[ 4 + mInvOffset] = dst4 * invdet;
240 mInv[
[all...]

Completed in 41 milliseconds