Lines Matching refs:bounds
88 SkIRect bounds = this->getBounds();
90 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(bounds.width()),
91 SkIntToScalar(bounds.height()));
109 SkIRect bounds;
111 bounds = fPicture->cullRect().roundOut();
114 bounds = SkIRect::MakeWH(std::min(bounds.width(), maxRTSize),
115 std::min(bounds.height(), maxRTSize));
118 bounds = SkIRect::MakeWH(kDefaultWidth, kDefaultHeight);
123 bounds = SkIRect::MakeWH(std::min(bounds.width(), kMaxWidth),
124 std::min(bounds.height(), kMaxHeight));
125 return bounds;
144 SkIRect bounds = this->getBounds();
149 SkImageInfo info = SkImageInfo::Make(bounds.size(), cap.fColorType, kPremul_SkAlphaType,
156 SkIRect bounds = this->getBounds();
161 SkImageInfo info = SkImageInfo::Make(bounds.size(), cap.fColorType, kPremul_SkAlphaType,
213 SkIRect bounds = this->getBounds();
214 fDebugCanvas = std::make_unique<DebugCanvas>(bounds.width(), bounds.height());