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

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_format.c691 uint8_t *tmp_row; local in function:util_format_translate
698 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row;
699 tmp_row = MALLOC(y_step * tmp_stride);
700 if (!tmp_row)
704 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step);
705 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step);
713 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height);
714 dst_format_desc->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height);
717 FREE(tmp_row);
722 int *tmp_row; local in function:util_format_translate
753 unsigned int *tmp_row; local in function:util_format_translate
783 float *tmp_row; local in function:util_format_translate
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/format/
H A Du_format.c741 uint8_t *tmp_row; local in function:util_format_translate
748 tmp_stride = MAX2(width, x_step) * 4 * sizeof *tmp_row;
749 tmp_row = malloc(y_step * tmp_stride);
750 if (!tmp_row)
754 util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, y_step);
755 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, y_step);
763 util_format_unpack_rgba_8unorm_rect(src_format, tmp_row, tmp_stride, src_row, src_stride, width, height);
764 pack->pack_rgba_8unorm(dst_row, dst_stride, tmp_row, tmp_stride, width, height);
767 free(tmp_row);
772 int *tmp_row; local in function:util_format_translate
803 unsigned int *tmp_row; local in function:util_format_translate
833 float *tmp_row; local in function:util_format_translate
[all...]

Completed in 4 milliseconds