Lines Matching defs:view
114 std::unique_ptr<GrFragmentProcessor> GrBicubicEffect::Make(GrSurfaceProxyView view,
119 auto fp = GrTextureEffect::Make(std::move(view), alphaType, SkMatrix::I());
125 std::unique_ptr<GrFragmentProcessor> GrBicubicEffect::Make(GrSurfaceProxyView view,
135 fp = GrTextureEffect::Make(std::move(view), alphaType, SkMatrix::I(), sampler, caps);
142 GrSurfaceProxyView view,
154 std::move(view), alphaType, SkMatrix::I(), sampler, subset, caps);
161 GrSurfaceProxyView view,
182 std::move(view), alphaType, SkMatrix::I(), sampler, subset, expandedDomain, caps);
265 auto [view, ct, at] = d->randomView();
271 subset.fLeft = d->fRandom->nextSScalar1() * view.width();
272 subset.fTop = d->fRandom->nextSScalar1() * view.height();
273 subset.fRight = d->fRandom->nextSScalar1() * view.width();
274 subset.fBottom = d->fRandom->nextSScalar1() * view.height();
276 return MakeSubset(std::move(view),
286 return Make(std::move(view), at, m, wm[0], wm[1], kernel, direction, *d->caps());
289 auto [view, ct, at] = d->randomView();
290 return Make(std::move(view), at, m, kernel, direction);