Lines Matching refs:method
169 if (compData) ret->pImpl->composite(ret, compData->target->duplicate(), compData->method); in duplicate()
220 … if (MASK_REGION_MERGING(compData->method)) region.add(P(compData->target)->bounds(renderer)); in render()
222 cmp = renderer->target(region, COMPOSITE_TO_COLORSPACE(renderer, compData->method)); in render()
228 if (cmp) renderer->beginComposite(cmp, compData->method, compData->target->pImpl->opacity); in render()
256 auto method = compData->method; in update() local
267 …if ((method == CompositeMethod::AlphaMask && a == 255 && PP(shape)->opacity == 255) || (method == … in update()
467 Result Paint::composite(std::unique_ptr<Paint> target, CompositeMethod method) noexcept in composite() argument
470 if (target && method == CompositeMethod::ClipPath) return clip(std::move(target)); in composite()
473 if (pImpl->composite(this, p, method)) return Result::Success; in composite()
484 return pImpl->compData->method; in composite()
520 Result Paint::blend(BlendMethod method) noexcept in blend() argument
523 …if (method == BlendMethod::Hue || method == BlendMethod::Saturation || method == BlendMethod::Colo… in blend()
525 if (pImpl->blendMethod != method) { in blend()
526 pImpl->blendMethod = method; in blend()