HomeSort by relevance Sort by last modified time
    Searched refs:fMatrix (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/skia/src/animator/
SkDrawMatrix.cpp 56 fMatrix.reset();
81 copy->fMatrix = fMatrix;
99 if (fMatrix.isIdentity()) {
104 result = fMatrix[SkMatrix::kMScaleX];
107 result = fMatrix.getScaleY();
110 result = fMatrix.getSkewX();
113 result = fMatrix.getSkewY();
116 result = fMatrix.getTranslateX();
119 result = fMatrix.getTranslateY()
    [all...]
SkDrawMatrix.h 46 fMatrix.preRotate(degrees, center.fX, center.fY);
50 fMatrix.preConcat(src);
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
58 fMatrix.preSkew(skewX, skewY, center.fX, center.fY);
62 fMatrix.preTranslate(x, y);
67 SkMatrix fMatrix;
SkMatrixParts.cpp 16 SkMatrixPart::SkMatrixPart() : fMatrix(NULL) {
20 fMatrix->dirty();
24 return fMatrix;
31 fMatrix = (SkDrawMatrix*) parent;
52 fMatrix->rotate(degrees, center);
74 fMatrix->scale(x, y, center);
96 fMatrix->skew(x, y, center);
116 fMatrix->translate(x, y);
153 fMatrix->set(result);
182 fMatrix->set(temp)
    [all...]
  /external/skia/src/animator/
SkDrawMatrix.cpp 56 fMatrix.reset();
81 copy->fMatrix = fMatrix;
99 if (fMatrix.isIdentity()) {
104 result = fMatrix[SkMatrix::kMScaleX];
107 result = fMatrix.getScaleY();
110 result = fMatrix.getSkewX();
113 result = fMatrix.getSkewY();
116 result = fMatrix.getTranslateX();
119 result = fMatrix.getTranslateY()
    [all...]
SkDrawMatrix.h 46 fMatrix.preRotate(degrees, center.fX, center.fY);
50 fMatrix.preConcat(src);
54 fMatrix.preScale(scaleX, scaleY, center.fX, center.fY);
58 fMatrix.preSkew(skewX, skewY, center.fX, center.fY);
62 fMatrix.preTranslate(x, y);
67 SkMatrix fMatrix;
SkMatrixParts.cpp 16 SkMatrixPart::SkMatrixPart() : fMatrix(NULL) {
20 fMatrix->dirty();
24 return fMatrix;
31 fMatrix = (SkDrawMatrix*) parent;
52 fMatrix->rotate(degrees, center);
74 fMatrix->scale(x, y, center);
96 fMatrix->skew(x, y, center);
116 fMatrix->translate(x, y);
153 fMatrix->set(result);
182 fMatrix->set(temp)
    [all...]
  /external/skia/bench/
MatrixBench.cpp 241 fMatrix.setAll(fArray[0], fArray[1], fArray[2],
244 always_do(fMatrix.getType());
245 fMatrix.dirtyMatrixTypeCache();
246 always_do(fMatrix.getType());
247 fMatrix.dirtyMatrixTypeCache();
248 always_do(fMatrix.getType());
249 fMatrix.dirtyMatrixTypeCache();
250 always_do(fMatrix.getType());
251 fMatrix.dirtyMatrixTypeCache();
252 always_do(fMatrix.getType())
    [all...]
BitmapScaleBench.cpp 33 SkMatrix fMatrix;
69 fMatrix.setScale( scale(), scale() );
100 canvas.drawBitmapMatrix( fInputBitmap, fMatrix, &paint );
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrSingleTextureEffect.cpp 14 , fMatrix(m)
24 , fMatrix(m)
34 , fMatrix(m)
GrSingleTextureEffect.h 24 const SkMatrix& getMatrix() const { return fMatrix; }
68 SkMatrix fMatrix;
  /external/skia/src/gpu/effects/
GrSingleTextureEffect.cpp 14 , fMatrix(m)
24 , fMatrix(m)
34 , fMatrix(m)
GrSingleTextureEffect.h 24 const SkMatrix& getMatrix() const { return fMatrix; }
68 SkMatrix fMatrix;
  /external/chromium_org/third_party/skia/src/core/
SkPerspIter.h 41 const SkMatrix& fMatrix;
SkPictureStateTree.cpp 23 fRoot->fMatrix = identity;
28 fCurrentState.fMatrix = identity;
74 fCurrentState.fMatrix = m;
92 n->fMatrix = fCurrentState.fMatrix;
165 if (fCurrentMatrix != fNodes.top()->fMatrix) {
166 fCurrentMatrix = fNodes.top()->fMatrix;
167 SkMatrix tmp = *fNodes.top()->fMatrix;
182 if (fCurrentMatrix != draw->fMatrix) {
183 SkMatrix tmp = *draw->fMatrix;
    [all...]
SkPictureStateTree.h 36 SkMatrix* fMatrix;
136 SkMatrix* fMatrix;
  /external/skia/src/core/
SkPerspIter.h 41 const SkMatrix& fMatrix;
SkPictureStateTree.cpp 23 fRoot->fMatrix = identity;
28 fCurrentState.fMatrix = identity;
74 fCurrentState.fMatrix = m;
92 n->fMatrix = fCurrentState.fMatrix;
165 if (fCurrentMatrix != fNodes.top()->fMatrix) {
166 fCurrentMatrix = fNodes.top()->fMatrix;
167 SkMatrix tmp = *fNodes.top()->fMatrix;
182 if (fCurrentMatrix != draw->fMatrix) {
183 SkMatrix tmp = *draw->fMatrix;
    [all...]
SkPictureStateTree.h 36 SkMatrix* fMatrix;
136 SkMatrix* fMatrix;
  /external/chromium_org/third_party/skia/src/views/animated/
SkImageView.cpp 19 fMatrix = NULL;
30 if (fMatrix)
31 sk_free(fMatrix);
74 if (fMatrix)
76 SkASSERT(!fMatrix->isIdentity());
78 *matrix = *fMatrix;
95 if (fMatrix == NULL)
96 fMatrix = (SkMatrix*)sk_malloc_throw(sizeof(SkMatrix));
97 *fMatrix = *matrix;
102 if (fMatrix)
    [all...]
  /external/skia/src/views/animated/
SkImageView.cpp 19 fMatrix = NULL;
30 if (fMatrix)
31 sk_free(fMatrix);
74 if (fMatrix)
76 SkASSERT(!fMatrix->isIdentity());
78 *matrix = *fMatrix;
95 if (fMatrix == NULL)
96 fMatrix = (SkMatrix*)sk_malloc_throw(sizeof(SkMatrix));
97 *fMatrix = *matrix;
102 if (fMatrix)
    [all...]
  /external/skia/gm/
shadertext2.cpp 47 SkMatrix fMatrix;
71 matrices.append()->fMatrix.reset();
73 matrices.append()->fMatrix.setScale(1.2f, 0.8f);
75 matrices.append()->fMatrix.setRotate(10.f);
77 matrices.append()->fMatrix.reset();
78 matrices.top().fMatrix.setPerspX(-0.0015f);
79 matrices.top().fMatrix.setPerspY(+0.0015f);
83 localMatrices.append()->fMatrix.reset();
85 localMatrices.append()->fMatrix.setScale(2.5f, 0.2f);
87 localMatrices.append()->fMatrix.setRotate(45.f)
    [all...]
filterbitmap.cpp 53 fMatrix[0].setScale(scale, scale);
54 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
59 SkMatrix fMatrix[2];
82 for (size_t i = 0; i < SK_ARRAY_COUNT(fMatrix); ++i) {
83 SkSize size = computeSize(fBM, fMatrix[i]);
87 draw_col(canvas, fBM, fMatrix[i], size.fWidth);
  /external/skia/src/pdf/
SkPDFDeviceFlattener.cpp 30 local.preConcat(*d.fMatrix);
47 d.fMatrix->mapPoints(flattenedPoints, points, count);
50 draw.fMatrix = &identity;
63 path.transform(*d.fMatrix);
66 draw.fMatrix = &matrix;
108 tmpPath.transform(*d.fMatrix);
112 draw.fMatrix = &matrix;
149 return d.fMatrix->hasPerspective();
155 return d.fMatrix->hasPerspective();
  /external/chromium_org/third_party/skia/include/effects/
Sk2DPathEffect.h 41 const SkMatrix& getMatrix() const { return fMatrix; }
48 SkMatrix fMatrix, fInverse;
  /external/skia/include/effects/
Sk2DPathEffect.h 41 const SkMatrix& getMatrix() const { return fMatrix; }
48 SkMatrix fMatrix, fInverse;

Completed in 1138 milliseconds

1 2 3 4 5