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

/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java129 * @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[ 5 + mInvOffset] = dst5 * invdet;
241 mInv[ 6 + mInvOffset] = dst6 * invdet;
242 mInv[ 7 + mInvOffset]
[all...]

Completed in 655 milliseconds