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

/frameworks/base/libs/rs/
H A DrsMatrix.h26 struct Matrix struct in namespace:android::renderscript
40 void load(const Matrix *);
45 void loadMultiply(const Matrix *lhs, const Matrix *rhs);
52 void multiply(const Matrix *rhs) {
53 Matrix tmp;
58 Matrix tmp;
63 Matrix tmp;
68 Matrix tmp;
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java22 * Matrix math utilities. These methods operate on OpenGL ES format
43 public class Matrix { class
617 float rlf = 1.0f / Matrix.length(fx, fy, fz);
628 float rls = 1.0f / Matrix.length(sx, sy, sz);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java23 * The Matrix class holds a 3x3 matrix for transforming coordinates.
24 * Matrix does not have a constructor, so it must be explicitly initialized
28 public class Matrix { class
45 public Matrix() { method in class:Matrix
53 public Matrix(Matrix src) { method in class:Matrix
78 public void set(Matrix src) {
86 /** Returns true iff obj is a Matrix and its values equal our values.
90 obj instanceof Matrix &&
91 native_equals(native_instance, ((Matrix)ob
[all...]

Completed in 108 milliseconds