Lines Matching defs:brd
209 auto brd = create_brd(fPath);
210 if (nullptr == brd) {
211 return Result::Skip("Could not create brd for %s.", fPath.c_str());
214 auto recommendedCT = brd->computeOutputColorType(colorType);
220 auto colorSpace = brd->computeOutputColorSpace(colorType, nullptr);
222 const uint32_t width = brd->width();
223 const uint32_t height = brd->height();
231 if (!brd->decodeRegion(&bitmap, nullptr, SkIRect::MakeXYWH(0, 0, width, height),
286 if (!brd->decodeRegion(&bitmap, nullptr, SkIRect::MakeXYWH(decodeLeft,
314 auto brd = create_brd(fPath);
315 if (brd) {
316 return {std::max(1, brd->width() / (int)fSampleSize),
317 std::max(1, brd->height() / (int)fSampleSize)};