/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 55 // Change the current transform matrix. 66 // Pushes the configuration state (matrix, and alpha) onto 77 // Pops from the top of the stack as current configuration state (matrix, 207 * matrix state. There is no special handling for non-90-degree rotations.
|
/packages/apps/Gallery2/src/com/android/photos/drawables/ |
AutoThumbnailDrawable.java | 23 import android.graphics.Matrix; 46 private Matrix mDrawMatrix = new Matrix(); 135 // Calculates a matrix similar to ScaleType.CENTER_CROP
|
/packages/apps/Launcher3/src/com/android/gallery3d/glrenderer/ |
GLCanvas.java | 55 // Change the current transform matrix. 66 // Pushes the configuration state (matrix, and alpha) onto 77 // Pops from the top of the stack as current configuration state (matrix, 207 * matrix state. There is no special handling for non-90-degree rotations.
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Xfermodes.java | 24 import android.graphics.Matrix; 112 Matrix m = new Matrix();
|
/external/ceres-solver/internal/ceres/ |
block_random_access_crs_matrix.cc | 76 VLOG(2) << "Matrix Size [" << num_cols 86 // pattern of the underlying compressed sparse row matrix. Along the 88 // access into the CRS Matrix.
|
block_random_access_sparse_matrix.cc | 75 VLOG(1) << "Matrix Size [" << num_cols 96 // Fill the sparsity pattern of the underlying matrix. 140 // Each cell is stored contiguously as its own little dense matrix.
|
dense_sparse_matrix_test.cc | 31 // TODO(keir): Implement a generic "compare sparse matrix implementations" test 159 Matrix tsm_dense; 160 Matrix dsm_dense;
|
minimizer.h | 164 // Jacobian matrix. The Options struct does not own this pointer. 172 // Object holding the Jacobian matrix. It is assumed that the 173 // sparsity structure of the matrix has already been initialized
|
schur_jacobi_preconditioner.cc | 93 // Update the values of the preconditioner matrix and factorize it. 100 // eliminator combines the computation of the reduced camera matrix 121 down_cast<BlockRandomAccessSparseMatrix*>(m_.get())->matrix()->values();
|
/external/chromium_org/gpu/command_buffer/tests/ |
gl_bind_uniform_location_unittest.cc | 111 uniform mat4 matrix; 120 gl_Position = matrix * a_position; 162 glBindUniformLocationCHROMIUM(program, matrix_location, "matrix");
|
/external/chromium_org/skia/ext/ |
analysis_canvas.h | 97 const SkMatrix& matrix, 126 const SkMatrix* matrix, 135 const SkMatrix* matrix) OVERRIDE;
|
vector_platform_device_emf_win.h | 53 const SkMatrix& matrix, 63 const SkPath& path, const SkMatrix* matrix, 110 // Draws a bitmap in the the device, using the currently loaded matrix.
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSMatrix.cpp | 67 // Check for a "none" or empty transform. In these cases we can use the default identity matrix. 87 // set the matrix 186 return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix.a(), m_matrix.b(), m_matrix.c(), m_matrix.d(), m_matrix.e(), m_matrix.f());
|
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
SymbolTable.cpp | 23 type(p.type), precision(p.precision), qualifier(p.qualifier), size(p.size), matrix(p.matrix), array(p.array), arraySize(p.arraySize), structure(0) 67 else if (matrix)
|
/external/chromium_org/third_party/freetype/src/raster/ |
ftrend1.c | 61 const FT_Matrix* matrix, 73 if ( matrix ) 74 FT_Outline_Transform( &slot->outline, matrix );
|
/external/chromium_org/third_party/mesa/src/include/VG/ |
vgu.h | 109 VGfloat * matrix) VGU_API_EXIT; 115 VGfloat * matrix) VGU_API_EXIT; 125 VGfloat * matrix) VGU_API_EXIT;
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
vg_context.h | 179 const struct matrix *paint_to_user, 180 const struct matrix *user_to_surface, 181 struct matrix *mat);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
config.h | 40 /** Maximum modelview matrix stack depth */ 43 /** Maximum projection matrix stack depth */ 46 /** Maximum texture matrix stack depth */
|
viewport.c | 56 * matrix). Usually called from _mesa_Viewport(). 88 * the WindowMap matrix being up to date in the driver's Viewport 134 * the WindowMap matrix being up to date in the driver's Viewport
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_xform.h | 78 * into a straight-forward matrix transformation, with asm acceleration 133 #define NORM_TRANSFORM 0x4 /* apply the transformation matrix */ 134 #define NORM_TRANSFORM_NO_ROT 0x8 /* apply the transformation matrix */
|
/external/chromium_org/third_party/skia/include/core/ |
SkColorFilter.h | 33 * If the filter can be represented by a 5x4 matrix, this 34 * returns true, and sets the matrix appropriately. 37 virtual bool asColorMatrix(SkScalar matrix[20]) const;
|
/external/chromium_org/third_party/skia/include/utils/ |
SkDumpCanvas.h | 83 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE; 84 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE; 115 const SkPath& path, const SkMatrix* matrix,
|
/external/chromium_org/third_party/skia/src/core/ |
SkBlitter.h | 71 const SkMatrix& matrix, 73 return Choose(device, matrix, paint, NULL, 0); 77 const SkMatrix& matrix,
|
/external/chromium_org/third_party/skia/src/pipe/ |
SkGPipeRead.cpp | 268 SkMatrix matrix; 269 reader->readMatrix(&matrix); 270 canvas->setMatrix(matrix); 275 SkMatrix matrix; 276 reader->readMatrix(&matrix); 277 canvas->concat(matrix); 470 const SkMatrix* matrix = NULL; 473 matrix = &matrixStorage; 476 canvas->drawTextOnPath(text, len, path, matrix, state->paint()); 541 SkMatrix matrix; [all...] |
/external/eigen/Eigen/src/Core/ |
EigenBase.h | 20 * Besides MatrixBase-derived classes, this also includes special matrix classes such as diagonal matrices, etc. 94 * Implementation of matrix base methods 101 * its own special matrix without having to modify MatrixBase
|