Home
last modified time | relevance | path

Searched refs:proxyBounds (Results 1 – 2 of 2) sorted by relevance

/external/skqp/src/gpu/
DGrTextureProducer.cpp102 const SkIRect proxyBounds = SkIRect::MakeWH(proxy->width(), proxy->height()); in DetermineDomainMode() local
104 SkASSERT(proxyBounds.contains(constraintRect)); in DetermineDomainMode()
109 if (constraintRect.contains(proxyBounds) && proxyIsExact) { in DetermineDomainMode()
168 if (proxyBounds.fRight - filterHalfWidth < constraintRect.fRight) { in DetermineDomainMode()
169 domainRect->fRight = proxyBounds.fRight - kDomainInset; in DetermineDomainMode()
172 if (proxyBounds.fBottom - filterHalfWidth < constraintRect.fBottom) { in DetermineDomainMode()
173 domainRect->fBottom = proxyBounds.fBottom - kDomainInset; in DetermineDomainMode()
182 domainRect->fRight = proxyBounds.fRight - kDomainInset; in DetermineDomainMode()
183 domainRect->fBottom = proxyBounds.fBottom - kDomainInset; in DetermineDomainMode()
/external/skia/src/core/
DSkBlurMF.cpp687 SkIRect proxyBounds; in directFilterMaskGPU() local
689 devRRect.rect().makeOutset(extra, extra).roundOut(&proxyBounds); in directFilterMaskGPU()
692 surfaceDrawContext->fillPixelsWithLocalMatrix(clip, std::move(paint), proxyBounds, inverse); in directFilterMaskGPU()