Home
last modified time | relevance | path

Searched refs:maxWindowRectangles (Results 1 – 13 of 13) sorted by relevance

/external/skia/src/gpu/
DGrReducedClip.h24 GrReducedClip(const SkClipStack&, const SkRect& queryBounds, int maxWindowRectangles = 0);
77 void walkStack(const SkClipStack&, const SkRect& queryBounds, int maxWindowRectangles);
78 void addInteriorWindowRectangles(int maxWindowRectangles);
DGrRenderTargetProxy.cpp31 if (caps.maxWindowRectangles() > 0) { in GrRenderTargetProxy()
43 int GrRenderTargetProxy::maxWindowRectangles(const GrCaps& caps) const { in maxWindowRectangles() function in GrRenderTargetProxy
45 ? caps.maxWindowRectangles() in maxWindowRectangles()
DGrReducedClip.cpp34 int maxWindowRectangles) { in GrReducedClip() argument
106 this->walkStack(stack, tighterQuery, maxWindowRectangles); in GrReducedClip()
108 if (fWindowRects.count() < maxWindowRectangles) { in GrReducedClip()
109 this->addInteriorWindowRectangles(maxWindowRectangles); in GrReducedClip()
114 int maxWindowRectangles) { in walkStack() argument
173 } else if (fWindowRects.count() < maxWindowRectangles && !embiggens && in walkStack()
449 void GrReducedClip::addInteriorWindowRectangles(int maxWindowRectangles) { in addInteriorWindowRectangles() argument
450 SkASSERT(fWindowRects.count() < maxWindowRectangles); in addInteriorWindowRectangles()
463 if (fWindowRects.count() >= maxWindowRectangles) { in addInteriorWindowRectangles()
491 if (fWindowRects.count() >= maxWindowRectangles) { in addInteriorWindowRectangles()
[all …]
DGrRenderTarget.cpp31 gpu->caps()->maxWindowRectangles() > 0); in GrRenderTarget()
DGrRenderTargetContextPriv.h95 int maxWindowRectangles() const;
DGrClipStackClip.cpp261 renderTargetContext->priv().maxWindowRectangles()); in apply()
DGrRenderTargetContext.cpp595 int GrRenderTargetContextPriv::maxWindowRectangles() const { in maxWindowRectangles() function in GrRenderTargetContextPriv
596 return fRenderTargetContext->fRenderTargetProxy->maxWindowRectangles( in maxWindowRectangles()
/external/skia/tests/
DProxyTest.cpp50 REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects); in check_rendertarget()
164 fit, caps.maxWindowRectangles(), false); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
261 caps.maxWindowRectangles(), true); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/external/skia/include/private/
DGrRenderTargetProxy.h54 int maxWindowRectangles(const GrCaps& caps) const;
/external/skia/include/gpu/
DGrCaps.h141 int maxWindowRectangles() const { return fMaxWindowRectangles; } in maxWindowRectangles() function
/external/skia/src/gpu/gl/
DGrGLRenderTarget.cpp46 if (glCaps.maxWindowRectangles() > 0 && idDesc.fRTFBOID) { in ComputeFlags()
DGrGLGpu.cpp1745 SkASSERT(windowState.numWindows() <= this->caps()->maxWindowRectangles()); in flushWindowRectangles()
1747 if (!this->caps()->maxWindowRectangles() || in flushWindowRectangles()
1772 if (!this->caps()->maxWindowRectangles() || fHWWindowRectsState.knownDisabled()) { in disableWindowRectangles()
/external/skia/gm/
Dwindowrectangles.cpp182 if (!ctx || !rtc || rtc->priv().maxWindowRectangles() < kNumWindows) { in onCoverClipStack()