HomeSort by relevance Sort by last modified time
    Searched refs:src_bh (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_copy_image.c 49 GLuint src_bw, src_bh; local
52 _mesa_get_format_block_size(src_mt->format, &src_bw, &src_bh);
55 assert(src_height % src_bh == 0);
57 assert(src_y % src_bh == 0);
68 assert(dst_y % src_bh == 0);
83 src_mapped = mapped + ((src_y - map_y1) / src_bh) * src_stride +
85 dst_mapped = mapped + ((dst_y - map_y1) / src_bh) * dst_stride +
97 src_height /= (int)src_bh;
  /external/mesa3d/src/mesa/main/
copyimage.c 466 GLuint src_bw, src_bh, dst_bw, dst_bh; local
497 _mesa_get_format_block_size(srcFormat, &src_bw, &src_bh);
521 if ((srcX % src_bw != 0) || (srcY % src_bh != 0) ||
523 (srcHeight % src_bh != 0 && (srcY + srcHeight) != src_h)) {
551 dstHeight = srcHeight * dst_bh / src_bh;
  /external/mesa3d/src/gallium/auxiliary/util/
u_surface.c 265 unsigned src_bs, dst_bs, src_bw, dst_bw, src_bh, dst_bh; local
290 src_bh = util_format_get_blockheight(src_format);
301 dst_box.height /= src_bh;
313 assert(src_bh == dst_bh);
326 assert(src_box.y % src_bh == 0);
329 assert(src_box.height % src_bh == 0 ||
345 assert((src_box.width / src_bw) * (src_box.height / src_bh) * src_bs ==

Completed in 88 milliseconds