Home
last modified time | relevance | path

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

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