Home | History | Annotate | Download | only in core

Lines Matching full:matrix

74 static bool only_scale_and_translate(const SkMatrix& matrix) {
76 return (matrix.getType() & ~mask) == 0;
106 // Do this first, so we know the matrix can be inverted.
319 // communicates between its matrix-proc and its sampler-proc. Until we can
388 SkMatrix matrix;
389 matrix.setIDiv(fRawBitmap.width(), fRawBitmap.height());
402 matrix.preConcat(lmInverse);
410 // we check the matrix scale factors to determine how to interpret the filter quality setting.
423 SkMatrix matrix;
424 matrix.setConcat(context->getMatrix(), this->getLocalMatrix());
425 if (matrix.getMinScale() < SK_Scalar1) {
434 SkMatrix matrix;
435 matrix.setConcat(context->getMatrix(), this->getLocalMatrix());
436 useBicubic = GrBicubicEffect::ShouldUseBicubic(matrix, &textureFilterMode);
461 *grEffect = GrBicubicEffect::Create(texture, matrix, tm);
463 *grEffect = GrSimpleTextureEffect::Create(texture, matrix, params);