HomeSort by relevance Sort by last modified time
    Searched refs:util_format_get_nblocksx (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
296 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
298 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
349 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
352 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
363 dstx = util_format_get_nblocksx(orig_info[1].format, dstx);
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
296 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
298 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
349 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
352 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
363 dstx = util_format_get_nblocksx(orig_info[1].format, dstx);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 592 new_width = util_format_get_nblocksx(tex->format, orig->width0);
598 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
600 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
618 tex->width0 = util_format_get_nblocksx(orig->format, orig->width0);
620 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
621 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
715 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
718 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
726 dstx = util_format_get_nblocksx(orig_info[1].format, dstx);
736 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x)
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 592 new_width = util_format_get_nblocksx(tex->format, orig->width0);
598 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
600 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
618 tex->width0 = util_format_get_nblocksx(orig->format, orig->width0);
620 rtex->surface.level[0].npix_x = util_format_get_nblocksx(orig->format, orig->npix0_x);
621 rtex->surface.level[level].npix_x = util_format_get_nblocksx(orig->format, orig->npix_x);
715 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x);
718 sbox.width = util_format_get_nblocksx(orig_info[0].format, src_box->width);
726 dstx = util_format_get_nblocksx(orig_info[1].format, dstx);
736 sbox.x = util_format_get_nblocksx(orig_info[0].format, src_box->x)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_miptree.c 96 rect->w = util_format_get_nblocksx(pt->format, rect->w);
116 rect->x0 = util_format_get_nblocksx(pt->format, x) << mt->ms_x;
178 tx->base.stride = util_format_get_nblocksx(pt->format, box->width) *
183 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width);
314 mt->uniform_pitch = util_format_get_nblocksx(pt->format, w) * blocksz;
324 unsigned nbx = util_format_get_nblocksx(pt->format, w);
325 unsigned nby = util_format_get_nblocksx(pt->format, h);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_miptree.c 96 rect->w = util_format_get_nblocksx(pt->format, rect->w);
116 rect->x0 = util_format_get_nblocksx(pt->format, x) << mt->ms_x;
178 tx->base.stride = util_format_get_nblocksx(pt->format, box->width) *
183 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width);
314 mt->uniform_pitch = util_format_get_nblocksx(pt->format, w) * blocksz;
324 unsigned nbx = util_format_get_nblocksx(pt->format, w);
325 unsigned nby = util_format_get_nblocksx(pt->format, h);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format.h 701 util_format_get_nblocksx(enum pipe_format format, function
721 return util_format_get_nblocksx(format, width) * util_format_get_nblocksy(format, height);
728 return util_format_get_nblocksx(format, width) * util_format_get_blocksize(format);
u_debug.c 531 util_format_get_nblocksx(texture->format, surface->width),
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.h 701 util_format_get_nblocksx(enum pipe_format format, function
721 return util_format_get_nblocksx(format, width) * util_format_get_nblocksy(format, height);
728 return util_format_get_nblocksx(format, width) * util_format_get_blocksize(format);
u_debug.c 531 util_format_get_nblocksx(texture->format, surface->width),
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_miptree.c 192 unsigned nbx = util_format_get_nblocksx(pt->format, pt->width0);
231 unsigned nbx = util_format_get_nblocksx(pt->format, w);
nvc0_transfer.c 360 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_miptree.c 192 unsigned nbx = util_format_get_nblocksx(pt->format, pt->width0);
231 unsigned nbx = util_format_get_nblocksx(pt->format, w);
nvc0_transfer.c 360 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_resource_texture.c 95 return align(util_format_get_nblocksx(format, width), align_to);
298 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
444 unsigned nblocksx = util_format_get_nblocksx(pt->format, pt->width0);
462 util_format_get_nblocksx(pt->format, u_minify(pt->width0, 2));
556 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
607 util_format_get_nblocksx(pt->format, x),
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 95 return align(util_format_get_nblocksx(format, width), align_to);
298 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
444 unsigned nblocksx = util_format_get_nblocksx(pt->format, pt->width0);
462 util_format_get_nblocksx(pt->format, u_minify(pt->width0, 2));
556 const unsigned nblocks = util_format_get_nblocksx(pt->format, pt->width0);
607 util_format_get_nblocksx(pt->format, x),
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_transfer.c 34 rect->width = util_format_get_nblocksx(res->format, w);
36 rect->x = util_format_get_nblocksx(res->format, x);
280 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
nv50_miptree.c 226 unsigned nbx = util_format_get_nblocksx(pt->format, w);
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_transfer.c 34 rect->width = util_format_get_nblocksx(res->format, w);
36 rect->x = util_format_get_nblocksx(res->format, x);
280 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
nv50_miptree.c 226 unsigned nbx = util_format_get_nblocksx(pt->format, w);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_resource_texture.c 209 stride = util_format_get_nblocksx(texture->format, texture->width0) *
250 unsigned nblocksx = util_format_get_nblocksx(texture->format, box->width);
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 209 stride = util_format_get_nblocksx(texture->format, texture->width0) *
250 unsigned nblocksx = util_format_get_nblocksx(texture->format, box->width);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_texture.c 134 nblocksx = util_format_get_nblocksx(pt->format,
807 util_format_get_nblocksx(format, align(width, TILE_SIZE));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
compute.c 194 util_format_get_nblocksx(format, w));
238 util_format_get_nblocksx(tex->format, tex->width0));
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.c 134 nblocksx = util_format_get_nblocksx(pt->format,
807 util_format_get_nblocksx(format, align(width, TILE_SIZE));
    [all...]

Completed in 1321 milliseconds

1 2