Home
last modified time | relevance | path

Searched refs:tmp_row (Results 1 – 1 of 1) sorted by relevance

/hardware/google/gfxstream/guest/mesa/src/util/format/
Du_format.c746 uint8_t *tmp_row; in util_format_translate() local
753 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row; in util_format_translate()
754 tmp_row = malloc((uint64_t)y_step * tmp_stride); in util_format_translate()
755 if (!tmp_row) in util_format_translate()
759 …util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, y… in util_format_translate()
760 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step); in util_format_translate()
768 …util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, h… in util_format_translate()
769 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height); in util_format_translate()
772 free(tmp_row); in util_format_translate()
777 int *tmp_row; in util_format_translate() local
[all …]