Searched defs:dst_rowstride (Results 1 - 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_pixel_read.c98 unsigned dst_rowstride, dst_imagesize, aligned_rowstride, flip_y; local
122 dst_rowstride = pack->RowLength;
124 dst_rowstride = width;
132 aligned_rowstride = get_texture_image_row_stride(radeon, dst_format, dst_rowstride, 0, GL_TEXTURE_2D);
133 dst_rowstride *= _mesa_get_format_bytes(dst_format);
134 if (_mesa_is_bufferobj(pack->BufferObj) && aligned_rowstride != dst_rowstride)
182 copy_rows(pixels, dst_rowstride, dst_buffer->ptr,
183 aligned_rowstride, height, dst_rowstride);
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_pixel_read.c98 unsigned dst_rowstride, dst_imagesize, aligned_rowstride, flip_y; local
122 dst_rowstride = pack->RowLength;
124 dst_rowstride = width;
132 aligned_rowstride = get_texture_image_row_stride(radeon, dst_format, dst_rowstride, 0, GL_TEXTURE_2D);
133 dst_rowstride *= _mesa_get_format_bytes(dst_format);
134 if (_mesa_is_bufferobj(pack->BufferObj) && aligned_rowstride != dst_rowstride)
182 copy_rows(pixels, dst_rowstride, dst_buffer->ptr,
183 aligned_rowstride, height, dst_rowstride);
/external/mesa3d/src/mesa/main/
H A Dtexcompress_bptc.c1252 uint8_t *dst, int dst_rowstride)
1257 if (dst_rowstride >= width * 4)
1258 dst_row_diff = dst_rowstride - ((width + 3) & ~3) * 4;
1560 uint8_t *dst, int dst_rowstride,
1566 if (dst_rowstride >= width * 4)
1567 dst_row_diff = dst_rowstride - ((width + 3) & ~3) * 4;
1250 compress_rgba_unorm(int width, int height, const uint8_t *src, int src_rowstride, uint8_t *dst, int dst_rowstride) argument
1558 compress_rgb_float(int width, int height, const float *src, int src_rowstride, uint8_t *dst, int dst_rowstride, bool is_signed) argument

Completed in 236 milliseconds