Searched refs:encodedRow (Results 1 – 1 of 1) sorted by relevance
103 inline uint32_t get_output_row_interlaced(uint32_t encodedRow, uint32_t height) { in get_output_row_interlaced() argument104 SkASSERT(encodedRow < height); in get_output_row_interlaced()106 if (encodedRow * 8 < height) { in get_output_row_interlaced()107 return encodedRow * 8; in get_output_row_interlaced()110 if (encodedRow * 4 < height) { in get_output_row_interlaced()111 return 4 + 8 * (encodedRow - ceil_div(height, 8)); in get_output_row_interlaced()114 if (encodedRow * 2 < height) { in get_output_row_interlaced()115 return 2 + 4 * (encodedRow - ceil_div(height, 4)); in get_output_row_interlaced()118 return 1 + 2 * (encodedRow - ceil_div(height, 2)); in get_output_row_interlaced()