HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 776 - 800 of 4077) sorted by null

<<31323334353637383940>>

  /external/skia/src/animator/
SkPaintPart.h 54 SkMatrix* getMatrix(); // returns NULL if matrix is NULL
55 SkDrawMatrix* matrix; member in class:SkDrawShader
  /external/skia/src/core/
SkLocalMatrixShader.h 26 virtual BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix,
28 return fProxyShader->asABitmap(bitmap, matrix, mode);
  /external/skia/src/effects/
Sk1DPathEffect.cpp 94 SkMatrix matrix; local
98 matrix.setSinCos(tangent.fY, tangent.fX, 0, 0);
99 matrix.preTranslate(-sx, 0);
100 matrix.postTranslate(pos.fX, pos.fY);
101 matrix.mapPoints(&dst[i], &pt, 1);
188 SkMatrix matrix; local
189 if (meas.getMatrix(distance, &matrix)) {
190 dst->addPath(fPath, matrix);
SkLayerRasterizer.cpp 65 const SkMatrix& matrix,
85 // apply the matrix and offset
87 SkMatrix m = matrix;
94 &matrix, &mask,
105 bool SkLayerRasterizer::onRasterize(const SkPath& path, const SkMatrix& matrix,
114 if (!compute_bounds(*fLayers, path, matrix, clipBounds, &mask->fBounds))
138 translatedMatrix = matrix;
148 // we set the matrixproc in the loop, as the matrix changes each time (potentially)
  /external/skia/src/pdf/
SkPDFUtils.h 39 static SkPDFArray* MatrixToArray(const SkMatrix& matrix);
40 static void AppendTransform(const SkMatrix& matrix, SkWStream* content);
  /external/skia/src/utils/
SkProxyCanvas.cpp 42 void SkProxyCanvas::didConcat(const SkMatrix& matrix) {
43 fProxy->concat(matrix);
44 this->INHERITED::didConcat(matrix);
47 void SkProxyCanvas::didSetMatrix(const SkMatrix& matrix) {
48 fProxy->setMatrix(matrix);
49 this->INHERITED::didSetMatrix(matrix);
135 const SkMatrix* matrix, const SkPaint& paint) {
136 fProxy->drawTextOnPath(text, byteLength, path, matrix, paint);
SkCanvasStateUtils.cpp 44 float matrix[9]; member in struct:SkMCState
155 static void setup_MC_state(SkMCState* state, const SkMatrix& matrix, const SkRegion& clip) {
159 // capture the matrix
161 state->matrix[i] = matrix.get(i);
206 // decompose the total matrix and clip
248 setup_MC_state(&layerState->mcState, layer.matrix(), layer.clip());
269 // reconstruct the matrix
270 SkMatrix matrix; local
272 matrix.set(i, state.matrix[i])
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filterbank_tables.c 29 /* The matrix for transforming the backward composite state to upper channel state */
34 /* The matrix for transforming the backward composite state to lower channel state */
filterbank_tables.h 40 /* The matrix for transforming the backward composite state to upper channel state */
43 /* The matrix for transforming the backward composite state to lower channel state */
  /frameworks/base/libs/hwui/
StatefulBaseRenderer.h 31 * Manages the Snapshot stack, implementing matrix, save/restore, and clipping methods in the
39 * to StatefulBaseRenderer, so that not only will querying operations work (getClip/Matrix), but so
51 * Initialize the first snapshot, computing the projection matrix, and stores the dimensions of
71 // Matrix
78 virtual void setMatrix(const SkMatrix& matrix);
79 void setMatrix(const Matrix4& matrix); // internal only convenience method
80 virtual void concatMatrix(const SkMatrix& matrix);
81 void concatMatrix(const Matrix4& matrix); // internal only convenience method
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
MatrixTransform.java 35 public void setMatrix(Matrix4f matrix) {
36 mLocalMatrix = matrix;
  /frameworks/native/services/surfaceflinger/RenderEngine/
Texture.cpp 42 void Texture::setMatrix(float const* matrix) {
43 mTextureMatrix = mat4(matrix);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ColorSpaceMatrix.java 34 * @param matrix
36 public ColorSpaceMatrix(ColorSpaceMatrix matrix) {
37 System.arraycopy(matrix.mMatrix, 0, mMatrix, 0, matrix.mMatrix.length);
41 * get the matrix
43 * @return the internal matrix
50 * set matrix to identity
161 * set it to a saturation matrix
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
GLRoot.java 20 import android.graphics.Matrix;
47 public Matrix getCompensationMatrix();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MatrixUtils.java 26 * Utilities for matrix operations. Don't instantiate objects inside this class to prevent
42 * A utility function to inverse matrix.
68 * A utility function to inverse matrix. This function calculates answer for each row by
95 * A function to inverse matrix.
96 * The inverse matrix of squareMatrix will be output to inverseMatrix. Please notice that
119 * A matrix operation to multiply m0 and m1.
147 * A utility function to dump the specified matrix in a readable way
153 Log.d(TAG, "Dump matrix: " + title);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat4.js 24 * @class 4x4 Matrix
32 * @returns {mat4} a new 4x4 matrix
56 * Creates a new mat4 initialized with values from an existing matrix
58 * @param {mat4} a matrix to clone
59 * @returns {mat4} a new 4x4 matrix
85 * @param {mat4} out the receiving matrix
86 * @param {mat4} a the source matrix
110 * Set a mat4 to the identity matrix
112 * @param {mat4} out the receiving matrix
138 * @param {mat4} out the receiving matrix
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkCanvasStateUtils.cpp 44 float matrix[9]; member in struct:SkMCState
155 static void setup_MC_state(SkMCState* state, const SkMatrix& matrix, const SkRegion& clip) {
159 // capture the matrix
161 state->matrix[i] = matrix.get(i);
206 // decompose the total matrix and clip
248 setup_MC_state(&layerState->mcState, layer.matrix(), layer.clip());
269 // reconstruct the matrix
270 SkMatrix matrix; local
272 matrix.set(i, state.matrix[i])
    [all...]
  /external/eigen/Eigen/src/Core/
Array.h 20 * The %Array class is very similar to the Matrix class. It provides
22 * %Array and the %Matrix class is primarily in the API: the API for the
24 * API for the %Matrix class provides easy access to linear-algebra
34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
79 * *this might be resized to match the dimensions of \a other. If *this was a null matrix (not already initialized),
104 * For dynamic-size matrices, creates an empty matrix of size 0. Does not allocate any array. Such a matrix
105 * is called a null matrix. This constructor is the unique way to create null matrices: resizing
106 * a matrix to 0 is not supported.
131 * constructor Matrix() instead
    [all...]
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusRegion.h 277 Region::Transform(IN const Matrix* matrix)
279 return SetStatus(DllExports::GdipTransformRegion(nativeRegion, matrix->nativeMatrix));
437 Region::GetRegionScansCount(IN const Matrix* matrix) const
443 matrix->nativeMatrix));
449 IN const Matrix* matrix,
456 matrix->nativeMatrix));
462 // The rects are returned in the units specified by the matrix
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppWindowAnimator.java 19 import android.graphics.Matrix;
198 "thumbnail", "POS " + tmpFloats[Matrix.MTRANS_X]
199 + ", " + tmpFloats[Matrix.MTRANS_Y], null);
200 thumbnail.setPosition(tmpFloats[Matrix.MTRANS_X], tmpFloats[Matrix.MTRANS_Y]);
204 + " matrix=[" + tmpFloats[Matrix.MSCALE_X]
205 + "," + tmpFloats[Matrix.MSKEW_Y]
206 + "][" + tmpFloats[Matrix.MSKEW_X]
207 + "," + tmpFloats[Matrix.MSCALE_Y] + "]", null)
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
ui_test.rs 108 // Setup the projection matrix
220 rs_matrix4x4 matrix;
221 rsMatrixLoadTranslate(&matrix, 0.0f, 0.0f, 10.0f - 6.0f * absoluteAngle / 50.0f);
223 rsMatrixScale(&matrix, 6.6f, 6.0f, 1.0f);
225 rsMatrixScale(&matrix, 12.6f, 12.0f, 1.0f);
227 rsMatrixRotate(&matrix, absoluteAngle, 1.0f, 0.0f, 0.0f);
228 rsMatrixRotate(&matrix, a, 0.0f, 0.4f, 0.1f);
230 rsMatrixMultiply(&vpConstants->MVP, &matrix);
268 rs_matrix4x4 matrix;
269 rsMatrixLoadScale(&matrix, wSize, hSize, 1.0)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 18 import android.graphics.Matrix;
114 Matrix m0 = getInverseRotMatrix();
177 Matrix m = getRotMatrix();
178 Matrix m0 = getInverseRotMatrix();
246 Matrix m = getRotMatrix();
247 Matrix m0 = getInverseRotMatrix();
346 Matrix m = getRotMatrix();
353 Matrix m = getInverseRotMatrix();
357 private Matrix getRotMatrix() {
358 Matrix m = new Matrix()
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 199 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
206 struct SluMatrixMapHelper<Matrix<Scalar,Rows,Cols,Options,MRows,MCols> >
208 typedef Matrix<Scalar,Rows,Cols,Options,MRows,MCols> MatrixType;
258 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
270 /** View a Super LU matrix as an Eigen expression */
298 typedef Matrix<Scalar,Dynamic,1> Vector;
299 typedef Matrix<int, 1, MatrixType::ColsAtCompileTime> IntRowVectorType;
300 typedef Matrix<int, MatrixType::RowsAtCompileTime, 1> IntColVectorType;
324 * \c NumericalIssue if the matrix.appears to be negative.
332 /** Computes the sparse Cholesky decomposition of \a matrix */
    [all...]
  /cts/suite/cts/deviceTests/simplecpu/src/com/android/cts/simplecpu/
SimpleCpuTest.java 31 * matrix multiplication (for floating point performance)
113 * Matrix multiplication test, nxn matrix multiplication
124 getReportLog().printArray("matrix mutiplication time", result, ResultType.LOWER_BETTER,
130 getReportLog().printSummary("matrix mutiplication time", stat.mAverage,
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
Triangle.java 30 // This matrix member variable provides a hook to manipulate
35 // the matrix must be included as a modifier of gl_Position
37 // for the matrix multiplication product to be correct.
101 * @param mvpMatrix - The Model View Project matrix in which to draw
126 // get handle to shape's transformation matrix

Completed in 936 milliseconds

<<31323334353637383940>>