/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
ProgramNode.h | 17 #include "Matrix.h" 25 void drawProgram(Matrix& model, Matrix& view, Matrix& projection); 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection); 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) [all...] |
SceneGraphNode.h | 18 #include "Matrix.h" 27 virtual void before(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0; 28 virtual void after(Program& program, Matrix& model, Matrix& view, Matrix& projection) = 0; 29 void draw(Program& program, Matrix& model, Matrix& view, Matrix& projection) [all...] |
Program.cpp | 21 void Program::before(Matrix& model, Matrix& view, Matrix& projection) { 25 void Program::after(Matrix& model, Matrix& view, Matrix& projection) {
|
ProgramNode.cpp | 21 void ProgramNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 25 void ProgramNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 29 void ProgramNode::drawProgram(Matrix& model, Matrix& view, Matrix& projection) {
|
/external/deqp/framework/common/ |
tcuMatrix.hpp | 23 * \brief Templatized matrix class. 49 // Templated matrix class. 51 class Matrix 64 Matrix (void); 65 explicit Matrix (const T& src); 66 explicit Matrix (const T src[Rows*Cols]); 67 Matrix (const Vector<T, Rows>& src); 68 Matrix (const Matrix<T, Rows, Cols>& src); 69 ~Matrix (void) 138 namespace matrix namespace in namespace:tcu [all...] |
/cts/suite/cts/deviceTests/opengl/test/ |
MatrixTest.cpp | 20 #include "Matrix.h" 35 Matrix m1; 36 Matrix m2; 42 Matrix* clone = new Matrix(m1); 49 // Create an identity matrix. 50 Matrix m; 57 checkValues(m.mData, expected, Matrix::MATRIX_SIZE); 61 // Create a matrix. 62 Matrix m1 [all...] |
/external/chromium_org/ppapi/shared_impl/ |
compositor_layer_data.h | 23 matrix[0] = 1.0f; 24 matrix[1] = 0.0f; 25 matrix[2] = 0.0f; 26 matrix[3] = 0.0f; 27 matrix[4] = 0.0f; 28 matrix[5] = 1.0f; 29 matrix[6] = 0.0f; 30 matrix[7] = 0.0f; 31 matrix[8] = 0.0f; 32 matrix[9] = 0.0f 41 float matrix[16]; member in struct:ppapi::CompositorLayerData::Transform [all...] |
/frameworks/base/graphics/java/android/graphics/ |
ColorMatrixColorFilter.java | 20 * A color filter that transforms colors through a 4x5 color matrix. This filter 29 * Create a color filter that transforms colors through a 4x5 color matrix. 31 * @param matrix 4x5 matrix used to transform colors. It is copied into 32 * the filter, so changes made to the matrix after the filter 35 public ColorMatrixColorFilter(ColorMatrix matrix) { 36 mMatrix.set(matrix); 41 * Create a color filter that transforms colors through a 4x5 color matrix. 44 * matrix. The first 20 entries of the array are copied into 57 * value is never null. Modifying the returned matrix does not hav [all...] |
/external/opencv/cxcore/include/ |
cxcore.hpp | 213 CvMatrix() : matrix(0) {} 215 { matrix = cvCreateMat( rows, cols, type ); } 219 { matrix = cvInitMatHeader( hdr, rows, cols, type, data, step ); } 224 { matrix = cvCreateMatHeader( rows, cols, type ); 225 cvSetData( matrix, data, step ); } 228 { matrix = m; } 232 matrix = m.matrix; 236 CvMatrix( const char* filename, const char* matname=0, int color=-1 ) : matrix(0) 239 CvMatrix( CvFileStorage* fs, const char* mapname, const char* matname ) : matrix(0 348 CvMat* matrix; member in class:CvMatrix [all...] |
/external/eigen/doc/snippets/ |
EigenSolver_pseudoEigenvectors.cpp | 2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl; 7 cout << "The pseudo-eigenvalue matrix D is:" << endl << D << endl; 8 cout << "The pseudo-eigenvector matrix V is:" << endl << V << endl;
|
HessenbergDecomposition_matrixH.cpp | 2 cout << "Here is a random 4x4 matrix:" << endl << A << endl; 5 cout << "The Hessenberg matrix H is:" << endl << H << endl; 7 cout << "The orthogonal matrix Q is:" << endl << Q << endl;
|
HessenbergDecomposition_packedMatrix.cpp | 2 cout << "Here is a random 4x4 matrix:" << endl << A << endl; 5 cout << "The packed matrix M is:" << endl << pm << endl; 6 cout << "The upper Hessenberg part corresponds to the matrix H, which is:"
|
HouseholderQR_solve.cpp | 1 typedef Matrix<float,3,3> Matrix3x3; 4 cout << "Here is the matrix m:" << endl << m << endl; 5 cout << "Here is the matrix y:" << endl << y << endl;
|
RealSchur_RealSchur_MatrixType.cpp | 2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl; 5 cout << "The orthogonal matrix U is:" << endl << schur.matrixU() << endl; 6 cout << "The quasi-triangular matrix T is:" << endl << schur.matrixT() << endl << endl;
|
Tridiagonalization_Tridiagonalization_MatrixType.cpp | 3 cout << "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl; 6 cout << "The orthogonal matrix Q is:" << endl << Q << endl; 8 cout << "The tridiagonal matrix T is:" << endl << T << endl << endl;
|
Tridiagonalization_packedMatrix.cpp | 3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; 6 cout << "The packed matrix M is:" << endl << pm << endl; 7 cout << "The diagonal and subdiagonal corresponds to the matrix T, which is:"
|
MatrixBase_extract.cpp | 6 cout << "Here is the matrix m:" << endl << m << endl; 7 cout << "Here is the upper-triangular matrix extracted from m:" << endl 9 cout << "Here is the strictly-upper-triangular matrix extracted from m:" << endl 11 cout << "Here is the unit-lower-triangular matrix extracted from m:" << endl
|
MatrixBase_inverse.cpp | 2 cout << "Here is the matrix m:" << endl << m << endl;
|
MatrixBase_operatorNorm.cpp | 2 cout << "The operator norm of the 3x3 matrix of ones is "
|
SelfAdjointView_operatorNorm.cpp | 2 cout << "The operator norm of the 3x3 matrix of ones is "
|
/packages/apps/Camera2/src/com/android/camera/util/ |
MotionEventHelper.java | 3 import android.graphics.Matrix; 9 public static MotionEvent transformEvent(MotionEvent e, Matrix m) { 15 private static MotionEvent transformEventNew(MotionEvent e, Matrix m) {
|
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/helpers/ |
node-helper.js | 2 var glm = require("../../dist/gl-matrix");
|
/external/chromium_org/third_party/qcms/src/ |
matrix.h | 31 struct vector matrix_eval(struct matrix mat, struct vector v); 32 float matrix_det(struct matrix mat); 33 struct matrix matrix_identity(void); 34 struct matrix matrix_multiply(struct matrix a, struct matrix b); 35 struct matrix matrix_invert(struct matrix mat); 37 struct matrix matrix_invalid(void);
|
/external/eigen/doc/ |
TopicResizing.dox | 8 Is linked from the tutorial on the Matrix class.
|
TopicScalarTypes.dox | 8 Is linked from the tutorial on the Matrix class.
|