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

/frameworks/base/libs/hwui/
H A DSnapshot.cpp186 mat4 inverse; local
187 inverse.loadInverse(*transform);
190 inverse.mapRect(mLocalClip);
H A DOpenGLRenderer.cpp710 mat4 inverse; local
711 inverse.loadInverse(*mSnapshot->transform);
712 inverse.mapRect(clip);
/frameworks/base/graphics/java/android/renderscript/
H A DMatrix4f.java424 * Sets the current matrix to its inverse
426 public boolean inverse() { method in class:Matrix4f
453 * Sets the current matrix to its inverse transpose
/frameworks/rs/
H A DrsMatrix4x4.cpp37 bool Matrix4x4::inverse() { function in class:Matrix4x4
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DMatrix4f.java424 * Sets the current matrix to its inverse
426 public boolean inverse() { method in class:Matrix4f
453 * Sets the current matrix to its inverse transpose
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix4x4.cpp37 bool Matrix4x4::inverse() { function in class:Matrix4x4
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp262 static jboolean invert(JNIEnv* env, jobject clazz, SkMatrix* matrix, SkMatrix* inverse) { argument
263 return matrix->invert(inverse);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java657 /*package*/ static boolean native_invert(int native_object, int inverse) { argument
663 Matrix_Delegate inv_mtx = sManager.getDelegate(inverse);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java576 * If this matrix can be inverted, return true and if inverse is not null,
577 * set inverse to be the inverse of this matrix. If this matrix cannot be
578 * inverted, ignore inverse and return false.
580 public boolean invert(Matrix inverse) { argument
581 return native_invert(native_instance, inverse.native_instance);
855 private static native boolean native_invert(int native_object, int inverse); argument
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp538 void invert(GLfloat* inverse, const GLfloat* src) argument
544 memcpy(inverse, gIdentityf, sizeof(gIdentityf));
563 t = inverse[i*4+k];
564 inverse[i*4+k] = inverse[swap*4+k];
565 inverse[swap*4+k] = t;
572 inverse[i*4+k] *= t;
579 inverse[j*4+k] -= inverse[i*4+k]*t;
606 are transformed by the upper 3x3 modelview inverse
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1287 Interval span = min ? keys[i].span : keys[i].span.inverse();
2275 Interval inverse() { method in class:GridLayout.Interval
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1209 Interval span = min ? keys[i].span : keys[i].span.inverse();
2207 Interval inverse() { method in class:GridLayout.Interval

Completed in 742 milliseconds