Lines Matching refs:resolveRect
2365 void GrGLGpu::onResolveRenderTarget(GrRenderTarget* target, const SkIRect& resolveRect) {
2371 this->resolveRenderFBOs(glRT, resolveRect, ResolveDirection::kMSAAToSingle);
2375 void GrGLGpu::resolveRenderFBOs(GrGLRenderTarget* rt, const SkIRect& resolveRect,
2389 SkASSERT(resolveRect == SkIRect::MakeSize(rt->dimensions()));
2392 // happens inside flushScissor since resolveRect is already in native device coordinates.
2394 SkAssertResult(scissor.set(resolveRect));
2400 resolveRect == SkIRect::MakeSize(rt->dimensions()));
2401 int l = resolveRect.x();
2402 int b = resolveRect.y();
2403 int r = resolveRect.x() + resolveRect.width();
2404 int t = resolveRect.y() + resolveRect.height();