Home | History | Annotate | Download | only in codec

Lines Matching refs:height

103 inline uint32_t get_output_row_interlaced(uint32_t encodedRow, uint32_t height) {
104 SkASSERT(encodedRow < height);
106 if (encodedRow * 8 < height) {
110 if (encodedRow * 4 < height) {
111 return 4 + 8 * (encodedRow - ceil_div(height, 8));
114 if (encodedRow * 2 < height) {
115 return 2 + 4 * (encodedRow - ceil_div(height, 4));
118 return 1 + 2 * (encodedRow - ceil_div(height, 2));
217 SkImageInfo imageInfo = SkImageInfo::Make(size.width(), size.height(), kIndex_8_SkColorType,
369 int frameHeight = desc.Height;
371 int height = gif->SHeight;
375 height = SkTMax(height, frameHeight + frameTop);
381 height <= 0) {
386 size->set(width, height);
604 return get_output_row_interlaced(inputScanline - fFrameRect.top(), fFrameRect.height()) +