Home | History | Annotate | Download | only in effects

Lines Matching refs:matrix

138                                  const SkMatrix &matrix,
140 : INHERITED(texture, matrix, GrTextureParams(tileModes, GrTextureParams::kNone_FilterMode))
148 const SkMatrix &matrix,
150 : INHERITED(texture, matrix,
194 bool GrBicubicEffect::ShouldUseBicubic(const SkMatrix& matrix,
196 if (matrix.isIdentity()) {
202 if (!matrix.getMinMaxScales(scales) || scales[0] < SK_Scalar1) {
208 // At this point if scales[1] == SK_Scalar1 then the matrix doesn't do any scaling.
210 if (matrix.rectStaysRect() && SkScalarIsInt(matrix.getTranslateX()) &&
211 SkScalarIsInt(matrix.getTranslateY())) {