HomeSort by relevance Sort by last modified time
    Searched refs:fInvMatrix (Results 1 - 8 of 8) sorted by null

  /external/skia/src/core/
SkBitmapController.h 28 const SkMatrix& invMatrix() const { return fInvMatrix; }
33 SkMatrix fInvMatrix;
SkBitmapController.cpp 88 if (kN32_SkColorType != provider.info().colorType() || !cache_size_okay(provider, fInvMatrix) ||
89 fInvMatrix.hasPerspective())
94 SkScalar invScaleX = fInvMatrix.getScaleX();
95 SkScalar invScaleY = fInvMatrix.getScaleY();
96 if (fInvMatrix.getType() & SkMatrix::kAffine_Mask) {
98 if (!fInvMatrix.decomposeScale(&scale)) {
152 fInvMatrix.postScale(SkIntToScalar(dstW) / provider.width(),
160 * (in this case, we have the inverse, so it succeeds if fInvMatrix is upscaling)
173 if (!fInvMatrix.decomposeScale(&invScaleSize, nullptr)) {
202 fInvMatrix.postScale(invScaleFixup.width(), invScaleFixup.height())
    [all...]
SkBitmapProcState.cpp 104 fInvMatrix = inv;
120 fInvMatrix = fBMState->invMatrix();
126 bool trivialMatrix = (fInvMatrix.getType() & ~SkMatrix::kTranslate_Mask) == 0;
140 fInvMatrix.postIDiv(fPixmap.width(), fPixmap.height());
151 if (matrix_only_scale_translate(fInvMatrix)) {
153 if (fInvMatrix.invert(&forward)) {
157 fInvMatrix.setTranslate(-forward.getTranslateX(), -forward.getTranslateY());
162 fInvType = fInvMatrix.getType();
199 fInvProc = fInvMatrix.getMapXYProc();
200 fInvSx = SkScalarToFixed(fInvMatrix.getScaleX())
    [all...]
SkBitmapProcState.h 37 SkMatrix fInvMatrix; // This changes based on tile mode.
38 // TODO: combine fInvMatrix and fRealInvMatrix.
219 s.fInvProc(s.fInvMatrix,
229 biasX = (s.fInvMatrix.getScaleX() > 0);
230 biasY = (s.fInvMatrix.getScaleY() > 0);
SkBitmapProcState_matrix_template.h 109 SkPerspIter iter(s.fInvMatrix,
SkBitmapProcState_matrix.h 126 SkPerspIter iter(s.fInvMatrix,
  /external/skia/samplecode/
PerlinPatch.cpp 73 SkMatrix fInvMatrix;
136 if (!canvas->getTotalMatrix().invert(&fInvMatrix)) {
187 fInvMatrix.mapPoints(&clickPoint, 1);
  /external/skia/src/opts/
SkBitmapProcState_matrix_neon.h 193 SkPerspIter iter(s.fInvMatrix,
424 SkPerspIter iter(s.fInvMatrix,

Completed in 224 milliseconds