Lines Matching full:matrix
130 const SkMatrix &matrix,
132 : INHERITED(texture, matrix, GrTextureParams(tileModes, GrTextureParams::kNone_FilterMode))
139 const SkMatrix &matrix,
141 : INHERITED(texture, matrix, GrTextureParams(SkShader::kClamp_TileMode,
183 bool GrBicubicEffect::ShouldUseBicubic(const SkMatrix& matrix,
185 if (matrix.isIdentity()) {
191 if (!matrix.getMinMaxScales(scales) || scales[0] < SK_Scalar1) {
197 // At this point if scales[1] == SK_Scalar1 then the matrix doesn't do any scaling.
199 if (matrix.rectStaysRect() && SkScalarIsInt(matrix.getTranslateX()) &&
200 SkScalarIsInt(matrix.getTranslateY())) {