Searched refs:totalMatrix (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
H A DSkiaUtils.cpp292 const SkMatrix totalMatrix = context->getTotalMatrix();
294 if (!totalMatrix.rectStaysRect())
310 if (totalMatrix.getType() & SkMatrix::kAffine_Mask)
311 widthExpansion = totalMatrix[SkMatrix::kMSkewY], heightExpansion = totalMatrix[SkMatrix::kMSkewX];
313 widthExpansion = totalMatrix[SkMatrix::kMScaleX], heightExpansion = totalMatrix[SkMatrix::kMScaleY];
H A DNativeImageSkia.cpp211 SkMatrix totalMatrix = context->getTotalMatrix();
215 totalMatrix.preScale(scale.width(), scale.height());
221 totalMatrix.mapRect(&destRectTarget, normSrcRect);
235 resampling = computeInterpolationQuality(totalMatrix, normSrcRect.width(), normSrcRect.height(), destBitmapWidth, destBitmapHeight, isDataComplete());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext.cpp362 SkMatrix totalMatrix = recordingState.m_savedMatrix; local
363 totalMatrix.preConcat(m_canvas->getTotalMatrix());
365 return totalMatrix;
1996 SkMatrix totalMatrix = this->getTotalMatrix(); local
1997 if (!(totalMatrix.getType() & (SkMatrix::kAffine_Mask | SkMatrix::kPerspective_Mask)))
1998 totalMatrix.mapRect(&destRectTarget, destRect);
2000 resampling = computeInterpolationQuality(totalMatrix,
/external/chromium_org/third_party/skia/src/core/
H A DSkCanvas.cpp118 void updateMC(const SkMatrix& totalMatrix, const SkRasterClip& totalClip, argument
126 fMatrix = &totalMatrix;
129 fMatrixStorage = totalMatrix;
793 const SkMatrix& totalMatrix = this->getTotalMatrix(); local
798 layer->updateMC(totalMatrix, totalClip, fClipStack, NULL);
802 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
/external/skia/src/core/
H A DSkCanvas.cpp140 void updateMC(const SkMatrix& totalMatrix, const SkRasterClip& totalClip, argument
148 fMatrix = &totalMatrix;
151 fMatrixStorage = totalMatrix;
768 const SkMatrix& totalMatrix = this->getTotalMatrix(); local
773 layer->updateMC(totalMatrix, totalClip, fClipStack, NULL);
777 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp1469 SkMatrix totalMatrix = *d.fMatrix; local
1471 totalMatrix.preConcat(*prePathMatrix);
1473 if (!totalMatrix.invert(&transformInverse)) {
/external/skia/src/pdf/
H A DSkPDFDevice.cpp1568 SkMatrix totalMatrix = *d.fMatrix; local
1570 totalMatrix.preConcat(*prePathMatrix);
1572 if (!totalMatrix.invert(&transformInverse)) {

Completed in 3146 milliseconds