Lines Matching defs:set
118 auto set = new GrTextureSetEntry[requestedTotNumQuads];
124 set[i].fProxyView = i % 2 == 0 ? proxyViewA : proxyViewB;
128 set[i].fProxyView = GrSurfaceProxyView(std::move(proxyA),
133 set[i].fSrcAlphaType = kPremul_SkAlphaType;
134 set[i].fSrcRect = SkRect::MakeWH(100.0f, 100.0f);
135 set[i].fDstRect = SkRect::MakeWH(100.5f, 100.5f); // prevent the int non-AA optimization
136 set[i].fDstClipQuad = nullptr;
137 set[i].fPreViewMatrix = nullptr;
138 set[i].fColor = {1.f, 1.f, 1.f, 1.f};
139 set[i].fAAFlags = perQuadAA(i);
146 quad.fDevice = GrQuad::MakeFromRect(set[i].fDstRect, SkMatrix::I());
147 quad.fLocal = GrQuad(set[i].fSrcRect);
148 quad.fEdgeFlags = set[i].fAAFlags;
151 set[i].fProxyView,
152 set[i].fSrcAlphaType,
156 set[i].fColor,
168 set,
210 delete[] set;
300 // method had no way to break up the set of texture ops at the AA quad limit.