Home | History | Annotate | Download | only in gpu

Lines Matching defs:copyParams

33 void GrTextureAdjuster::makeCopyKey(const CopyParams& params, GrUniqueKey* copyKey,
45 sk_sp<GrTextureProxy> GrTextureAdjuster::refTextureProxyCopy(const CopyParams& copyParams) {
47 this->makeCopyKey(copyParams, &key, nullptr);
58 sk_sp<GrTextureProxy> copy = CopyOnGpu(fContext, std::move(proxy), contentArea, copyParams);
73 CopyParams copyParams;
84 copyParams.fWidth = contentArea->width();
85 copyParams.fHeight = contentArea->height();
86 copyParams.fFilter = GrSamplerParams::kBilerp_FilterMode;
87 } else if (!fContext->getGpu()->isACopyNeededForTextureParams(proxy.get(), params, &copyParams,
99 sk_sp<GrTextureProxy> copy = this->refTextureProxyCopy(copyParams);