Lines Matching refs:nextDims
1162 SkISize nextDims = finalSize;
1165 nextDims.fWidth = std::max((srcRect.width() + 1)/2, finalSize.width());
1167 nextDims.fWidth = std::min(srcRect.width()*2, finalSize.width());
1170 nextDims.fHeight = std::max((srcRect.height() + 1)/2, finalSize.height());
1172 nextDims.fHeight = std::min(srcRect.height()*2, finalSize.height());
1179 if (nextDims == finalSize) {
1184 GrImageInfo nextInfo(input->colorInfo(), nextDims);
1195 if (nextDims.width() == srcRect.width()) {
1197 } else if (nextDims.height() == srcRect.height()) {
1229 srcRect = SkIRect::MakeSize(nextDims);