HomeSort by relevance Sort by last modified time
    Searched refs:maxWindowRectangles (Results 1 - 13 of 13) sorted by null

  /external/skia/src/gpu/
GrReducedClip.h 24 GrReducedClip(const SkClipStack&, const SkRect& queryBounds, int maxWindowRectangles = 0);
77 void walkStack(const SkClipStack&, const SkRect& queryBounds, int maxWindowRectangles);
78 void addInteriorWindowRectangles(int maxWindowRectangles);
GrRenderTargetProxy.cpp 29 if (caps.maxWindowRectangles() > 0) {
40 int GrRenderTargetProxy::maxWindowRectangles(const GrCaps& caps) const {
42 ? caps.maxWindowRectangles()
GrRenderTarget.cpp 27 SkASSERT(!(fFlags & Flags::kWindowRectsSupport) || gpu->caps()->maxWindowRectangles() > 0);
GrRenderTargetContextPriv.h 95 int maxWindowRectangles() const;
GrReducedClip.cpp 34 int maxWindowRectangles) {
100 this->walkStack(stack, tighterQuery, maxWindowRectangles);
102 if (fWindowRects.count() < maxWindowRectangles) {
103 this->addInteriorWindowRectangles(maxWindowRectangles);
108 int maxWindowRectangles) {
167 } else if (fWindowRects.count() < maxWindowRectangles && !embiggens &&
443 void GrReducedClip::addInteriorWindowRectangles(int maxWindowRectangles) {
444 SkASSERT(fWindowRects.count() < maxWindowRectangles);
457 if (fWindowRects.count() >= maxWindowRectangles) {
485 if (fWindowRects.count() >= maxWindowRectangles) {
    [all...]
GrClipStackClip.cpp 263 renderTargetContext->priv().maxWindowRectangles());
GrRenderTargetContext.cpp 667 int GrRenderTargetContextPriv::maxWindowRectangles() const {
668 return fRenderTargetContext->fRenderTargetProxy->maxWindowRectangles(
    [all...]
  /external/skia/include/private/
GrRenderTargetProxy.h 52 int maxWindowRectangles(const GrCaps& caps) const;
  /external/skia/tests/
ProxyTest.cpp 47 REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects);
162 fit, caps.maxWindowRectangles(), false);
261 caps.maxWindowRectangles(), true);
  /external/skia/include/gpu/
GrCaps.h 162 int maxWindowRectangles() const { return fMaxWindowRectangles; }
  /external/skia/src/gpu/gl/
GrGLRenderTarget.cpp 45 if (glCaps.maxWindowRectangles() > 0 && idDesc.fRTFBOID) {
GrGLGpu.cpp     [all...]
  /external/skia/gm/
windowrectangles.cpp 183 if (!ctx || !rtc || rtc->priv().maxWindowRectangles() < kNumWindows) {

Completed in 124 milliseconds