Searched refs:matrix (Results 501 - 525 of 1121) sorted by relevance

<<21222324252627282930>>

/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dftcalc.h107 const FT_Matrix* matrix,
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dftcalc.h107 const FT_Matrix* matrix,
/external/pdfium/fpdfsdk/include/
H A Dfpdf_transformpage.h60 * Transform the whole page with a specified matrix, then clip the page content region.
63 * @param[in] matrix - The transform matrix.
67 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, FS_RECTF* clipRect);
72 * @param[in] a - The coefficient "a" of the matrix.
73 * @param[in] b - The coefficient "b" of the matrix.
74 * @param[in] c - The coefficient "c" of the matrix.
75 * @param[in] d - The coefficient "d" of the matrix.
76 * @param[in] e - The coefficient "e" of the matrix.
77 * @param[in] f - The coefficient "f" of the matrix
[all...]
/external/skia/debugger/QT/
H A DSkInspectorWidget.h55 Sets the text in the current matrix.
58 void setMatrix(const SkMatrix& matrix);
/external/skia/experimental/PdfViewer/
H A DSkTrackDevice.h97 const SkMatrix& matrix, const SkPaint& paint) {
99 INHERITED::drawBitmap(dummy1, bitmap, matrix, paint);
135 const SkPath& path, const SkMatrix* matrix,
138 INHERITED::drawTextOnPath(dummy1, text, len, path, matrix, paint);
96 drawBitmap(const SkDraw& dummy1, const SkBitmap& bitmap, const SkMatrix& matrix, const SkPaint& paint) argument
134 drawTextOnPath(const SkDraw& dummy1, const void* text, size_t len, const SkPath& path, const SkMatrix* matrix, const SkPaint& paint) argument
/external/skia/gm/
H A Dimagefiltersgraph.cpp141 SkScalar matrix[20] = { SK_Scalar1, 0, 0, 0, 0, local
146 SkAutoTUnref<SkColorFilter> matrixFilter(SkColorMatrixFilter::Create(matrix));
157 SkScalar matrix[20] = { SK_Scalar1, 0, 0, 0, 0, local
161 SkAutoTUnref<SkColorMatrixFilter> matrixCF(SkColorMatrixFilter::Create(matrix));
/external/skia/include/core/
H A DSkColorFilter.h41 * If the filter can be represented by a 5x4 matrix, this
42 * returns true, and sets the matrix appropriately.
45 virtual bool asColorMatrix(SkScalar matrix[20]) const;
H A DSkPathMeasure.h52 the corresponding matrix (by calling getPosTan).
54 matrix is unchanged.
56 bool SK_WARN_UNUSED_RESULT getMatrix(SkScalar distance, SkMatrix* matrix,
/external/skia/include/effects/
H A DSkColorMatrixFilter.h27 virtual bool asColorMatrix(SkScalar matrix[20]) const SK_OVERRIDE;
H A DSkLayerRasterizer.h88 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
/external/skia/include/views/
H A DSkTouchGesture.h21 bool evaluateMatrix(SkMatrix* matrix);
/external/skia/src/animator/
H A DSkPaintPart.h54 SkMatrix* getMatrix(); // returns NULL if matrix is NULL
55 SkDrawMatrix* matrix; member in class:SkDrawShader
H A DSkPathParts.cpp300 SK_MEMBER(matrix, Matrix),
308 SkAddPath::SkAddPath() : matrix(NULL), path(NULL) {
313 if (matrix)
314 fPath->fPath.addPath(path->fPath, matrix->getMatrix());
/external/skia/src/core/
H A DSkRecordDraw.cpp40 DRAW(Concat, concat(r.matrix));
41 DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
49 DRAW(DrawBitmapMatrix, drawBitmapMatrix(r.bitmap, r.matrix, r.paint));
63 DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
/external/skia/src/effects/
H A DSkStippleMaskFilter.cpp13 const SkMatrix& matrix,
11 filterMask(SkMask* dst, const SkMask& src, const SkMatrix& matrix, SkIPoint* margin) const argument
/external/skia/src/effects/gradients/
H A DSkRadialGradient.h33 SkMatrix* matrix,
H A DSkSweepGradient.h33 SkMatrix* matrix,
H A DSkTwoPointRadialGradient.cpp73 fDstToIndex matrix in the constructor).
184 SkMatrix* matrix,
190 if (matrix) {
194 if (matrix) {
197 matrix->setSinCos(-SkScalarMul(invDiffL, fDiff.fY),
200 matrix->reset();
202 matrix->preConcat(fPtsToUnit);
439 const SkMatrix& matrix,
441 AutoEffectUnref effect(SkNEW_ARGS(GrRadial2Gradient, (ctx, shader, matrix, tm)));
471 const SkMatrix& matrix,
182 asABitmap( SkBitmap* bitmap, SkMatrix* matrix, SkShader::TileMode* xy) const argument
[all...]
H A DSkTwoPointRadialGradient.h21 SkMatrix* matrix,
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.h43 const SkPath& path, const SkMatrix* matrix,
H A DSkPDFUtils.cpp32 SkPDFArray* SkPDFUtils::MatrixToArray(const SkMatrix& matrix) { argument
34 if (!matrix.asAffine(values)) {
47 void SkPDFUtils::AppendTransform(const SkMatrix& matrix, SkWStream* content) { argument
49 if (!matrix.asAffine(values)) {
/external/skia/src/utils/
H A DSkCullPoints.cpp180 SkMatrix matrix; local
181 matrix.setRectToRect(bounds, limit, SkMatrix::kFill_ScaleToFit);
183 path.transform(matrix, &devPath);
184 matrix.mapRect(&devTarget, target);
/external/skia/src/utils/debugger/
H A DSkObjectParser.h54 @param matrix SkMatrix
56 static SkString* MatrixToString(const SkMatrix& matrix);
/external/chromium_org/cc/output/
H A Dgl_renderer_unittest.cc1352 SkScalar matrix[20]; local
1354 matrix[0] = 0.213f + 0.787f * amount;
1355 matrix[1] = 0.715f - 0.715f * amount;
1356 matrix[2] = 1.f - (matrix[0] + matrix[1]);
1357 matrix[3] = matrix[4] = 0;
1358 matrix[5] = 0.213f - 0.213f * amount;
1359 matrix[
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftglyph.c219 const FT_Matrix* matrix,
225 if ( matrix )
226 FT_Outline_Transform( &glyph->outline, matrix );
424 FT_Matrix* matrix,
439 clazz->glyph_transform( glyph, matrix, delta );
442 if ( matrix )
443 FT_Vector_Transform( &glyph->advance, matrix );
218 ft_outline_glyph_transform( FT_Glyph outline_glyph, const FT_Matrix* matrix, const FT_Vector* delta ) argument

Completed in 5243 milliseconds

<<21222324252627282930>>