Home | History | Annotate | Download | only in codec

Lines Matching refs:height

59     if (rows != dstInfo.height()) {
60 // We set rowsDecoded equal to the height because the background has already
63 *rowsDecoded = dstInfo.height();
206 uint32_t row = this->getDstRow(y, dstInfo.height());
239 uint32_t row = this->getDstRow(y, dstInfo.height());
309 int height = info.height();
312 SkImageInfo dstInfo = info.makeWH(get_scaled_dimension(width, fSampleX), height);
323 // Adjust the height and the dst if the previous call to decodeRows() left us
325 if (height > fLinesToSkip) {
326 height -= fLinesToSkip;
330 fLinesToSkip -= height;
331 return height;
339 // If we have reached a row that is beyond the requested height, we have
341 if (y >= height) {
344 // would require us to stop before decoding the full height.
345 return height;
371 return height;
388 } else if (y > height) {
389 fLinesToSkip = y - height;
390 return height;