/external/neven/Embedded/common/src/b_TensorEm/ |
Int32Mat.h | 35 /** square matrix */ 43 /* width = height of square matrix */ 46 /* array of matrix elements (data is arranged by rows) */ 57 /** initializes matrix */ 76 /** allocates square matrix */ 101 /** computes the solution to matrix * outVecA = inVecA, returns false if the 106 * matA: the square matrix, array of size ( matWidthA * matWidthA ) 107 * matWidthA: width of the matrix 111 * tmpMatA: matrix of same size as matA
|
Int16Mat2D.h | 34 /** 2d matrix */ 74 /** creates identity matrix */ 77 /** creates rotation matrix */ 80 /** creates rigid matrix (scale & rotation) */ 83 /** scales matrix by a factor */ 86 /** multiplies matrix with vecA; returns resulting vector */ 90 /** multiplies matrix with matA; returns resulting matrix */
|
/external/skia/include/utils/ |
SkNWayCanvas.h | 27 virtual bool concat(const SkMatrix& matrix); 28 virtual void setMatrix(const SkMatrix& matrix); 57 const SkPath& path, const SkMatrix* matrix,
|
/external/skia/src/core/ |
SkColorFilter.cpp | 88 const SkMatrix& matrix) 90 return this->INHERITED::setContext(device, paint, matrix) && 91 fShader->setContext(device, paint, matrix);
|
SkComposeShader.cpp | 93 const SkMatrix& matrix) 95 if (!this->INHERITED::setContext(device, paint, matrix)) 98 // we preconcat our localMatrix (if any) with the device matrix 104 tmpM.setConcat(matrix, tmpM);
|
/external/webkit/WebCore/platform/graphics/cairo/ |
GradientCairo.cpp | 72 cairo_matrix_t matrix = m_gradientSpaceTransformation; local 73 cairo_matrix_invert(&matrix); 74 cairo_pattern_set_matrix(m_gradient, &matrix);
|
/external/webkit/WebCore/svg/ |
SVGTransform.h | 52 AffineTransform matrix() const; 80 return a.type() == b.type() && a.angle() == b.angle() && a.matrix() == b.matrix();
|
SVGTransform.idl | 35 readonly attribute SVGMatrix matrix; 38 void setMatrix(in SVGMatrix matrix);
|
/external/webkit/WebCore/svg/graphics/filters/ |
SVGFETile.cpp | 78 AffineTransform matrix; local 79 matrix.translate(m_in->scaledSubRegion().x() - scaledSubRegion().x(), m_in->scaledSubRegion().y() - scaledSubRegion().y()); 80 pattern.get()->setPatternSpaceTransform(matrix);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
BitmapMesh.java | 44 private final Matrix mMatrix = new Matrix(); 45 private final Matrix mInverse = new Matrix();
|
Vertices.java | 47 private final Matrix mMatrix = new Matrix(); 48 private final Matrix mInverse = new Matrix();
|
/external/skia/src/effects/ |
SkEmbossMaskFilter.cpp | 72 bool SkEmbossMaskFilter::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& matrix, SkIPoint* margin) 74 SkScalar radius = matrix.mapRadius(fBlurRadius); 99 // run the light direction through the matrix... 101 matrix.mapVectors((SkVector*)(void*)light.fDirection, (SkVector*)(void*)fLight.fDirection, 1);
|
/external/skia/src/gl/ |
SkGLDevice.h | 37 virtual void setMatrixClip(const SkMatrix& matrix, const SkRegion& clip); 47 const SkMatrix& matrix, const SkPaint& paint); 56 const SkPath& path, const SkMatrix* matrix, 68 const SkMatrix& matrix() const { return fMatrix; } function in class:SkGLDevice
|
/external/skia/src/utils/ |
SkCamera.cpp | 333 void SkCamera3D::patchToMatrix(const SkPatch3D& quilt, SkMatrix* matrix) const 354 matrix->set(SkMatrix::kMScaleX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot)); 355 matrix->set(SkMatrix::kMSkewY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot)); 356 matrix->set(SkMatrix::kMPersp0, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot)); 359 matrix->set(SkMatrix::kMSkewX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot)); 360 matrix->set(SkMatrix::kMScaleY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot)); 361 matrix->set(SkMatrix::kMPersp1, SkScalarDotDiv(3, patchPtr, 1, mapPtr+6, 1, dot)); 364 matrix->set(SkMatrix::kMTransX, SkScalarDotDiv(3, patchPtr, 1, mapPtr, 1, dot)); 365 matrix->set(SkMatrix::kMTransY, SkScalarDotDiv(3, patchPtr, 1, mapPtr+3, 1, dot)); 366 matrix->set(SkMatrix::kMPersp2, SK_UnitScalar1) 444 SkMatrix matrix; local [all...] |
/external/webkit/WebCore/platform/graphics/transforms/ |
MatrixTransformOperation.h | 48 virtual OperationType getOperationType() const { return MATRIX; } 49 virtual bool isSameType(const TransformOperation& o) const { return o.getOperationType() == MATRIX; } 62 TransformationMatrix matrix(m_a, m_b, m_c, m_d, m_e, m_f); 63 transform.multLeft(TransformationMatrix(matrix));
|
TransformationMatrix.cpp | 44 // inversion and decomposition of a 4x4 matrix. They are used throughout the code 48 // Adapted from Matrix Inversion by Richard Carling, Graphics Gems <http://tog.acm.org/GraphicsGems/index.html>. 64 // calculate the inverse of a 4x4 matrix 72 // calculate the determinant of a 2x2 matrix. 81 // Calculate the determinant of a 3x3 matrix 95 // double = determinant4x4(matrix) 97 // calculate the determinant of a 4x4 matrix. 132 // calculate the adjoint of a 4x4 matrix 134 // Let a denote the minor determinant of matrix A obtained by 143 // The matrix B = (b ) is the adjoint of [all...] |
/frameworks/base/graphics/java/android/graphics/ |
PathEffect.java | 22 * canvas' matrix and drawn.
|
/external/webkit/WebCore/platform/graphics/android/ |
ImageAndroid.cpp | 307 SkMatrix matrix(patternTransform); 310 matrix.preScale(SkFloatToScalar(scaleX), SkFloatToScalar(scaleY)); 318 matrix.postTranslate(SkFloatToScalar(tx), SkFloatToScalar(ty)); 319 shader->setLocalMatrix(matrix); 321 SkDebugf("--- drawPattern: src [%g %g %g %g] dst [%g %g %g %g] transform [%g %g %g %g %g %g] matrix [%g %g %g %g %g %g]\n", 326 matrix[0], matrix[1], matrix[2], matrix[3], matrix[4], matrix[5]) [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Matrix_ScaleToFitTest.java | 19 import android.graphics.Matrix.ScaleToFit; 57 args = {android.graphics.Matrix.ScaleToFit.class, java.lang.String.class}
|
/external/skia/include/core/ |
SkShader.h | 40 /** Return true if the shader has a non-identity local matrix. 41 @param localM Optional: If not null, return the shader's local matrix 42 @return true if the shader has a non-identity local matrix. 45 /** Set the shader's local matrix. 46 @param localM The shader's new local matrix. 49 /** Reset the shader's local matrix to identity. 106 device matrix. Return true if your shader supports these 111 const SkMatrix& matrix);
|
SkCanvas.h | 40 This includes a reference to the device itself, and a stack of matrix/clip 101 /** save the matrix state, restoring it on restore() */ 118 /** This call saves the current matrix, clip, and drawFilter, and pushes a 122 When the balancing call to restore() is made, the previous matrix, clip, 156 modifications to the matrix/clip/drawFilter state since the last save 162 /** Returns the number of matrix/clip states on the SkCanvas' private stack. 174 /** Preconcat the current matrix with the specified translation 181 /** Preconcat the current matrix with the specified scale. 188 /** Preconcat the current matrix with the specified rotation. 194 /** Preconcat the current matrix with the specified skew [all...] |
/external/skia/src/animator/ |
SkDrawMatrix.h | 29 DECLARE_DRAW_MEMBER_INFO(Matrix); 73 SkTDScalarArray matrix; member in class:SkDrawMatrix
|
/external/webkit/WebCore/rendering/ |
SVGMarkerLayoutInfo.h | 36 , matrix(matrixObj) 42 AffineTransform matrix; member in struct:WebCore::MarkerLayout
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
TransformationTest.java | 19 import android.graphics.Matrix; 58 Matrix expectedMatrix = new Matrix(); 66 expectedMatrix = new Matrix(); 199 final Matrix expected = new Matrix();
|
/external/freetype/src/cff/ |
cffobjs.c | 568 /* Normalize the font matrix so that `matrix->xx' is 1; the */ 571 /* normalization of the matrix). */ 577 FT_Matrix* matrix = &dict->font_matrix; local 580 FT_Fixed temp = FT_ABS( matrix->yy ); 587 matrix->xx = FT_DivFix( matrix->xx, temp ); 588 matrix->yx = FT_DivFix( matrix->yx, temp ); 589 matrix->xy = FT_DivFix( matrix->xy, temp ) 604 FT_Matrix* matrix; local [all...] |