Lines Matching defs:matrix
110 SkLine2DPathEffectImpl(SkScalar width, const SkMatrix& matrix)
111 : Sk2DPathEffect(matrix)
140 SkMatrix matrix;
141 buffer.readMatrix(&matrix);
143 return SkLine2DPathEffect::Make(width, matrix);
171 SkMatrix matrix;
172 buffer.readMatrix(&matrix);
175 return SkPath2DPathEffect::Make(matrix, path);
194 sk_sp<SkPathEffect> SkLine2DPathEffect::Make(SkScalar width, const SkMatrix& matrix) {
198 return sk_sp<SkPathEffect>(new SkLine2DPathEffectImpl(width, matrix));
201 sk_sp<SkPathEffect> SkPath2DPathEffect::Make(const SkMatrix& matrix, const SkPath& path) {
202 return sk_sp<SkPathEffect>(new SkPath2DPathEffectImpl(matrix, path));