Home | History | Annotate | Download | only in util

Lines Matching defs:src_row

256    const uint8_t *src_row;
264 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
267 format_desc->unpack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
279 const float *src_row;
287 src_row = src;
289 format_desc->pack_rgba_float(dst_row, dst_stride, src_row, src_stride, w, h);
297 const uint8_t *src_row;
305 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
308 format_desc->unpack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
317 const uint8_t *src_row;
325 src_row = src;
327 format_desc->pack_rgba_8unorm(dst_row, dst_stride, src_row, src_stride, w, h);
337 const uint8_t *src_row;
345 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
348 format_desc->unpack_rgba_uint(dst_row, dst_stride, src_row, src_stride, w, h);
359 const unsigned *src_row;
367 src_row = src;
369 format_desc->pack_rgba_uint(dst_row, dst_stride, src_row, src_stride, w, h);
379 const uint8_t *src_row;
387 src_row = (const uint8_t *)src + y*src_stride + x*(format_desc->block.bits/8);
390 format_desc->unpack_rgba_sint(dst_row, dst_stride, src_row, src_stride, w, h);
401 const int *src_row;
409 src_row = src;
411 format_desc->pack_rgba_sint(dst_row, dst_stride, src_row, src_stride, w, h);
543 const uint8_t *src_row;
568 src_row = (const uint8_t *)src + src_y*src_stride + src_x*(src_format_desc->block.bits/8);
608 src_format_desc->unpack_z_float(tmp_z, 0, src_row, src_stride, width, 1);
613 src_format_desc->unpack_s_8uint(tmp_s, 0, src_row, src_stride, width, 1);
618 src_row += src_step;
643 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, y_step);
647 src_row += src_step;
652 src_format_desc->unpack_rgba_8unorm(tmp_row, tmp_stride, src_row, src_stride, width, height);
668 src_format_desc->unpack_rgba_float(tmp_row, tmp_stride, src_row, src_stride, width, y_step);
672 src_row += src_step;
677 src_format_desc->unpack_rgba_float(tmp_row, tmp_stride, src_row, src_stride, width, height);