HomeSort by relevance Sort by last modified time
    Searched defs:nblocksx (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/i915/
i915_resource.h 62 unsigned short nblocksx; member in struct:offset_pair
i915_resource_texture.c 142 tex->image_offset[level][0].nblocksx = 0;
150 x = tex->image_offset[level][layer].nblocksx
160 unsigned nblocksx, unsigned nblocksy)
163 assert(!(img == 0 && level == 0) || (nblocksx == 0 && nblocksy == 0));
166 tex->image_offset[level][img].nblocksx = nblocksx;
445 unsigned nblocksx = util_format_get_nblocksx(pt->format, width); local
465 if (mip1_nblocksx > nblocksx)
486 x += nblocksx;
493 nblocksx = align_nblocksx(pt->format, width, align_x)
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_texture.c 93 unsigned align_x, align_y, nblocksx, nblocksy, block_size, num_slices; local
115 nblocksx = util_format_get_nblocksx(pt->format,
122 lpr->row_stride[level] = nblocksx * block_size;
124 lpr->row_stride[level] = align(nblocksx * block_size, util_cpu_caps.cacheline);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_miptree.c 78 unsigned nblocksx; member in struct:nv30_transfer
284 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width);
288 tx->nblocksx, tx->nblocksy, &tx->img);
302 tx->tmp.w = tx->nblocksx;
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_transfer.c 11 uint32_t nblocksx; member in struct:nv50_transfer
58 uint32_t nblocksx, uint32_t nblocksy)
135 PUSH_DATA (push, nblocksx * cpp);
275 tx->nblocksx = box->width << mt->ms_x;
278 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
282 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format);
297 tx->rect[1].width = tx->nblocksx;
309 tx->nblocksx, tx->nblocksy);
354 tx->nblocksx, tx->nblocksy);
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_transfer.c 9 uint32_t nblocksx; member in struct:nvc0_transfer
18 uint32_t nblocksx, uint32_t nblocksy)
96 PUSH_DATA (push, nblocksx * cpp);
113 uint32_t nblocksx, uint32_t nblocksy)
165 PUSH_DATA (push, nblocksx * cpp);
385 tx->nblocksx = box->width << mt->ms_x;
388 tx->nblocksx = util_format_get_nblocksx(res->format, box->width);
406 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format);
422 tx->rect[1].width = tx->nblocksx;
434 tx->nblocksx, tx->nblocksy)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 340 unsigned nblocksx, nblocksy; local
345 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width);
349 st->base.stride = nblocksx*util_format_get_blocksize(texture->format);
413 unsigned w, h, nblocksx, nblocksy; local
462 nblocksx = util_format_get_nblocksx(texture->format, w);
465 st->base.stride = nblocksx*util_format_get_blocksize(texture->format);
1369 unsigned nblocksx, nblocksy; local
    [all...]

Completed in 684 milliseconds