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

<<41424344454647484950>>

  /external/mesa3d/src/glsl/
glsl_types.h 113 * \name Vector and matrix element counts
120 unsigned matrix_columns:3; /**< 1, 2, 3, or 4 matrix columns. */
185 * If the type is a numeric or boolean scalar, vector, or matrix type,
195 * If the type is a numeric or boolean scalar, vector, or matrix, or an
216 * Get the instance of a built-in scalar, vector, or matrix type
235 * Query the total number of scalars that make up a scalar, vector or matrix
300 * Query whether or not a type is a scalar (non-vector and non-matrix).
321 * Query whether or not a type is a matrix
413 * Query the full type of a matrix row
416 * If the type is not a matrix, \c glsl_type::error_type is returned
    [all...]
  /frameworks/base/services/core/java/com/android/server/input/
PersistentDataStore.java 466 float[] matrix = TouchCalibration.IDENTITY.getAffineTransform(); local
472 for (int i = 0; i < matrix.length && i < CALIBRATION_NAME.length; i++) {
474 matrix[i] = Float.parseFloat(value);
483 mTouchCalibration[r] = new TouchCalibration(matrix[0],
484 matrix[1], matrix[2], matrix[3], matrix[4], matrix[5]);
487 mTouchCalibration[r] = new TouchCalibration(matrix[0]
    [all...]
  /external/chromium_org/third_party/skia/tests/
Matrix44Test.cpp 79 // Allocate a matrix on the heap
91 // constructor did avoid initializing the matrix contents.
101 // Verify that kIdentity_Constructor really does initialize to an identity matrix.
217 SkMatrix44 matrix(SkMatrix44::kIdentity_Constructor);
219 REPORTER_ASSERT(reporter, matrix.isIdentity());
220 REPORTER_ASSERT(reporter, SkMatrix44::kIdentity_Mask == matrix.getType());
224 matrix.set(1, 1, 0);
226 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask);
228 matrix.set(0, 3, 1); // translate-x
230 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
filter.js 201 * Perform an image convolution with a symmetrical 5x5 matrix:
350 * Copy part of src image to dst, applying matrix color filter on-the-fly.
355 * @param {Array.<number>} matrix 3x3 color matrix.
361 filter.colorMatrix3x3 = function(matrix, dst, src, offsetX, offsetY) {
362 var c11 = filter.floatToFixedPoint(matrix[0]);
363 var c12 = filter.floatToFixedPoint(matrix[1]);
364 var c13 = filter.floatToFixedPoint(matrix[2]);
365 var c21 = filter.floatToFixedPoint(matrix[3]);
366 var c22 = filter.floatToFixedPoint(matrix[4])
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
filter.js 201 * Perform an image convolution with a symmetrical 5x5 matrix:
350 * Copy part of src image to dst, applying matrix color filter on-the-fly.
355 * @param {Array.<number>} matrix 3x3 color matrix.
361 filter.colorMatrix3x3 = function(matrix, dst, src, offsetX, offsetY) {
362 var c11 = filter.floatToFixedPoint(matrix[0]);
363 var c12 = filter.floatToFixedPoint(matrix[1]);
364 var c13 = filter.floatToFixedPoint(matrix[2]);
365 var c21 = filter.floatToFixedPoint(matrix[3]);
366 var c22 = filter.floatToFixedPoint(matrix[4])
    [all...]
  /external/skia/tests/
Matrix44Test.cpp 79 // Allocate a matrix on the heap
91 // constructor did avoid initializing the matrix contents.
101 // Verify that kIdentity_Constructor really does initialize to an identity matrix.
217 SkMatrix44 matrix(SkMatrix44::kIdentity_Constructor);
219 REPORTER_ASSERT(reporter, matrix.isIdentity());
220 REPORTER_ASSERT(reporter, SkMatrix44::kIdentity_Mask == matrix.getType());
224 matrix.set(1, 1, 0);
226 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask);
228 matrix.set(0, 3, 1); // translate-x
230 REPORTER_ASSERT(reporter, matrix.getType() == expectedMask)
    [all...]
  /frameworks/base/core/java/android/view/
RenderNode.java 21 import android.graphics.Matrix;
284 // Matrix manipulation
291 public void getMatrix(@NonNull Matrix outMatrix) {
295 public void getInverseMatrix(@NonNull Matrix outMatrix) {
396 * Set the static matrix on the display list. The specified matrix is combined with other
399 * @param matrix A transform matrix to apply to this display list
401 public boolean setStaticMatrix(Matrix matrix) {
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 32 import android.graphics.Matrix;
379 Matrix rotateMatrix = new Matrix();
599 Matrix rotateMatrix = new Matrix();
600 Matrix inverseRotateMatrix = new Matrix();
738 Matrix m = new Matrix();
740 m.setRectToRect(cropRect, returnRect, Matrix.ScaleToFit.FILL)
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java 32 import android.graphics.Matrix;
384 Matrix rotateMatrix = new Matrix();
606 Matrix rotateMatrix = new Matrix();
607 Matrix inverseRotateMatrix = new Matrix();
745 Matrix m = new Matrix();
747 m.setRectToRect(cropRect, returnRect, Matrix.ScaleToFit.FILL)
    [all...]