/external/skia/include/utils/ |
SkLayer.h | 88 /** Return, in matrix, the matix transfomations that are applied locally 89 when this layer draws (i.e. its position and matrix/anchorPoint). 93 void getLocalTransform(SkMatrix* matrix) const; 95 /** Return, in matrix, the concatenation of transforms that are applied 97 This is the matrix that is applied to the layer during drawing. 99 void localToGlobal(SkMatrix* matrix) const;
|
/external/skia/src/utils/ |
SkCanvasStack.cpp | 64 * We need to handle setMatrix specially as it overwrites the matrix in each 65 * canvas unlike all other matrix operations (i.e. translate, scale, etc) which 66 * just pre-concatenate with the existing matrix. 68 void SkCanvasStack::setMatrix(const SkMatrix& matrix) { 72 SkMatrix tempMatrix = matrix; 77 this->SkCanvas::setMatrix(matrix);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/Images/src/ |
settingListRemove.svg | 60 transform="matrix(0.03826531,-0.03826531,0.03826531,0.03826531,-44.131211,1031.4147)"> 62 transform="matrix(0.93333336,0,0,0.93333336,26.666656,54.82412)" 80 transform="matrix(0,-1,1,0,0,0)" /> 93 transform="matrix(0,-1,1,0,0,0)" /> 107 transform="matrix(0.0382653,-0.0382653,0.0382653,0.0382653,-28.1312,1031.4147)"> 127 transform="matrix(0,-1,1,0,0,0)" /> 139 transform="matrix(0,-1,1,0,0,0)" /> 154 transform="matrix(0.70710669,-0.70710687,0.70710687,0.70710669,0,0)" 163 transform="matrix(0.0382653,-0.03826531,0.03826531,0.0382653,-12.560872,1026.5897)" 173 transform="matrix(0,-1,1,0,0,0)" / [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
shader.h | 36 struct matrix; 58 const struct matrix *mat); 59 void shader_set_paint_matrix(struct shader *shader, const struct matrix *mat);
|
vgu.c | 30 #include "matrix.h" 364 VGfloat * matrix) 366 struct matrix mat; 368 if (!matrix || !is_aligned(matrix)) 381 memcpy(matrix, mat.m, sizeof(VGfloat) * 9); 390 VGfloat * matrix) 392 struct matrix mat; 394 if (!matrix || !is_aligned(matrix)) [all...] |
/external/chromium_org/third_party/qcms/src/ |
transform_util.h | 51 struct matrix build_colorant_matrix(qcms_profile *p); 55 struct matrix matrix_invert(struct matrix mat);
|
/external/chromium_org/third_party/skia/src/doc/ |
SkDocument_PDF.cpp | 33 SkMatrix matrix; variable 38 matrix.setTranslate(content.fLeft, content.fTop); 40 fDevice = SkNEW_ARGS(SkPDFDevice, (pageS, contentS, matrix));
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFShader.h | 37 * @param matrix The current transform. (PDF shaders are absolutely 39 * @param surfceBBox The bounding box of the drawing surface (with matrix 43 const SkMatrix& matrix,
|
/external/chromium_org/tools/perf/page_sets/tough_animation_cases/ |
keyframed_animations.html | 24 0% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0); } 25 50% { -webkit-transform: matrix(-1, 0, 0, -1, 0, 0); } 26 100% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0); } 48 0% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0); opacity(1); } 49 50% { -webkit-transform: matrix(-.5, .5, -.5, -1.2, -150, 100); opacity(0); } 50 100% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0); opacity(1); } 72 0% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0) rotate3d(0, 1, 0, 0deg); } 73 50% { -webkit-transform: matrix(-1, .5, .2, -1, 100, 100) rotate3d(0, 1, 0, 45deg); } 74 100% { -webkit-transform: matrix(1, 0, 0, 1, 0, 0) rotate3d(0, 1, 0, 0deg); } 102 0% { -webkit-transform: matrix(10, 0, 0, 10, 0, 0) rotate3d(1, 1, 1, 0deg); opacity(1); [all...] |
/external/eigen/test/ |
selfadjoint.cpp | 52 CALL_SUBTEST_1( selfadjoint(Matrix<float, 1, 1>()) ); 53 CALL_SUBTEST_2( selfadjoint(Matrix<float, 2, 2>()) ); 56 CALL_SUBTEST_5( selfadjoint(Matrix<float,Dynamic,Dynamic,RowMajor>(s, s)) );
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
shader.h | 36 struct matrix; 58 const struct matrix *mat); 59 void shader_set_paint_matrix(struct shader *shader, const struct matrix *mat);
|
/external/skia/src/pdf/ |
SkPDFShader.h | 37 * @param matrix The current transform. (PDF shaders are absolutely 39 * @param surfceBBox The bounding box of the drawing surface (with matrix 43 const SkMatrix& matrix,
|
/frameworks/base/graphics/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 20 import android.graphics.Matrix; 131 * Specifies whether texture matrix calculations are to be added 257 * Sets the modelview matrix in the fixed function matrix buffer 259 * @param m modelview matrix 268 * Sets the projection matrix in the fixed function matrix buffer 270 * @param m projection matrix 279 * Sets the texture matrix in the fixed function matrix buffer [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
Bitmaps3dActivity.java | 24 import android.graphics.Matrix; 46 private Matrix mMatrix; 54 mMatrix = new Matrix();
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Program.h | 70 /* location of the projection matrix uniform */ 73 /* location of the color matrix uniform */ 76 /* location of the texture matrix uniform */
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
ZoomView.java | 23 import android.graphics.Matrix; 58 // Calculate the rotation matrix to apply orientation on the original image 61 Matrix rotationMatrix = new Matrix(); 64 // Set the translation of the matrix so that after rotation, the top left 77 Matrix mapping = new Matrix(); 78 mapping.setRectToRect(endRect, fullResRect, Matrix.ScaleToFit.CENTER); 85 Matrix invertRotation = new Matrix(); [all...] |
/packages/apps/Contacts/src/com/android/contacts/detail/ |
TransformableImageView.java | 20 import android.graphics.Matrix; 46 Matrix drawMatrix = new Matrix();
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterDraw.java | 23 import android.graphics.Matrix; 91 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, 109 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, 129 // done this way because of a bug in path.transform(matrix) 159 Matrix toScrMatrix, 175 Matrix m = new Matrix(); 218 void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, 223 public void drawData(Canvas canvas, Matrix originalRotateToScreen, int quality) { 266 public void fillBuffer(Matrix originalRotateToScreen) [all...] |
ImageFilterRedEye.java | 20 import android.graphics.Matrix; 50 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, short[] matrix); 65 Matrix originalToScreen = getOriginalToScreenMatrix(w, h);
|
/external/ceres-solver/data/ |
README.foe | 7 matrices from the MATLAB files and performing matrix multiplication.
|
/external/ceres-solver/internal/ceres/ |
dense_qr_solver.cc | 74 // Temporarily append a diagonal block to the A matrix, but undo 75 // it before returning the matrix to the user. 80 // can be appended to the matrix instead of doing it on A. 81 lhs_ = A->matrix(); 84 // Undo the modifications to the matrix A. 135 // Temporarily append a diagonal block to the A matrix, but undo 136 // it before returning the matrix to the user. 151 VectorRef(x, num_cols) = A->matrix().householderQr().solve(rhs_); 155 // Undo the modifications to the matrix A.
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_tree_browser_cell.mm | 11 @synthesize matrix = matrix_;
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_tree_browser_cell.mm | 11 @synthesize matrix = matrix_;
|
/external/chromium_org/skia/ext/ |
skia_utils_mac.mm | 92 CGAffineTransform SkMatrixToCGAffineTransform(const SkMatrix& matrix) { 95 DCHECK(matrix[SkMatrix::kMPersp0] == 0.0f); 96 DCHECK(matrix[SkMatrix::kMPersp1] == 0.0f); 97 DCHECK(matrix[SkMatrix::kMPersp2] == 1.0f); 99 return CGAffineTransformMake(matrix[SkMatrix::kMScaleX], 100 matrix[SkMatrix::kMSkewY], 101 matrix[SkMatrix::kMSkewX], 102 matrix[SkMatrix::kMScaleY], 103 matrix[SkMatrix::kMTransX], 104 matrix[SkMatrix::kMTransY]) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_idct.h | 54 struct pipe_sampler_view *matrix; member in struct:vl_idct 72 struct pipe_sampler_view *source, *matrix; member in struct:vl_idct_buffer::__anon14517::__anon14518 78 /* upload the idct matrix, which can be shared by all idct instances of a pipe */ 95 struct pipe_sampler_view *matrix,
|