Searched refs:tmp_row (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.c | 635 uint8_t *tmp_row; in util_format_translate() local 637 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate() 638 tmp_row = MALLOC(y_step * tmp_stride); in util_format_translate() 639 if (!tmp_row) in util_format_translate() 643 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step); in util_format_translate() 644 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate() 652 … src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height); in util_format_translate() 653 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate() 656 FREE(tmp_row); in util_format_translate() 660 float *tmp_row; in util_format_translate() local [all …]
|