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

  /external/mesa3d/src/mesa/main/
copyimage.c 466 GLuint src_bw, src_bh, dst_bw, dst_bh; local
529 _mesa_get_format_block_size(dstFormat, &dst_bw, &dst_bh);
530 if ((dstX % dst_bw != 0) || (dstY % dst_bh != 0)) {
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
293 dst_bh = util_format_get_blockheight(dst_format);
308 dst_box.height *= dst_bh;
313 assert(src_bh == dst_bh);
332 assert(dst_box.y % dst_bh == 0);
335 assert(dst_box.height % dst_bh == 0 ||
346 (dst_box.width / dst_bw) * (dst_box.height / dst_bh) * dst_bs);

Completed in 1314 milliseconds