Home
last modified time | relevance | path

Searched refs:nblocksx (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_transfer.c11 uint32_t nblocksx; member
58 uint32_t nblocksx, uint32_t nblocksy) in nv50_m2mf_transfer_rect() argument
135 PUSH_DATA (push, nblocksx * cpp); in nv50_m2mf_transfer_rect()
275 tx->nblocksx = box->width << mt->ms_x; in nv50_miptree_transfer_map()
278 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nv50_miptree_transfer_map()
282 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); in nv50_miptree_transfer_map()
297 tx->rect[1].width = tx->nblocksx; in nv50_miptree_transfer_map()
309 tx->nblocksx, tx->nblocksy); in nv50_miptree_transfer_map()
354 tx->nblocksx, tx->nblocksy); in nv50_miptree_transfer_unmap()
Dnv50_context.h277 uint32_t nblocksx, uint32_t nblocksy);
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_transfer.c9 uint32_t nblocksx; member
18 uint32_t nblocksx, uint32_t nblocksy) in nvc0_m2mf_transfer_rect() argument
96 PUSH_DATA (push, nblocksx * cpp); in nvc0_m2mf_transfer_rect()
113 uint32_t nblocksx, uint32_t nblocksy) in nve4_m2mf_transfer_rect() argument
165 PUSH_DATA (push, nblocksx * cpp); in nve4_m2mf_transfer_rect()
385 tx->nblocksx = box->width << mt->ms_x; in nvc0_miptree_transfer_map()
388 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nvc0_miptree_transfer_map()
406 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); in nvc0_miptree_transfer_map()
422 tx->rect[1].width = tx->nblocksx; in nvc0_miptree_transfer_map()
434 tx->nblocksx, tx->nblocksy); in nvc0_miptree_transfer_map()
[all …]
Dnvc0_context.h166 uint32_t nblocksx, uint32_t nblocksy);
/external/mesa3d/src/gallium/drivers/i915/
Di915_resource_texture.c142 tex->image_offset[level][0].nblocksx = 0; in i915_texture_set_level_info()
150 x = tex->image_offset[level][layer].nblocksx in i915_texture_offset()
160 unsigned nblocksx, unsigned nblocksy) in i915_texture_set_image_offset() argument
163 assert(!(img == 0 && level == 0) || (nblocksx == 0 && nblocksy == 0)); in i915_texture_set_image_offset()
166 tex->image_offset[level][img].nblocksx = nblocksx; in i915_texture_set_image_offset()
445 unsigned nblocksx = util_format_get_nblocksx(pt->format, width); in i945_texture_layout_2d() local
465 if (mip1_nblocksx > nblocksx) in i945_texture_layout_2d()
486 x += nblocksx; in i945_texture_layout_2d()
493 nblocksx = align_nblocksx(pt->format, width, align_x); in i945_texture_layout_2d()
Di915_resource.h62 unsigned short nblocksx; member
Di915_state_static.c114 x = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksx; in update_framebuffer()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_resource_texture.c340 unsigned nblocksx, nblocksy; in svga_texture_transfer_map_dma() local
345 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width); in svga_texture_transfer_map_dma()
349 st->base.stride = nblocksx*util_format_get_blocksize(texture->format); in svga_texture_transfer_map_dma()
413 unsigned w, h, nblocksx, nblocksy; in svga_texture_transfer_map_direct() local
462 nblocksx = util_format_get_nblocksx(texture->format, w); in svga_texture_transfer_map_direct()
465 st->base.stride = nblocksx*util_format_get_blocksize(texture->format); in svga_texture_transfer_map_direct()
1369 unsigned nblocksx, nblocksy; in svga_texture_transfer_map_upload() local
1401 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width); in svga_texture_transfer_map_upload()
1404 st->base.stride = nblocksx * util_format_get_blocksize(texture->format); in svga_texture_transfer_map_upload()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_texture.c93 unsigned align_x, align_y, nblocksx, nblocksy, block_size, num_slices; in llvmpipe_texture_layout() local
115 nblocksx = util_format_get_nblocksx(pt->format, in llvmpipe_texture_layout()
122 lpr->row_stride[level] = nblocksx * block_size; in llvmpipe_texture_layout()
124 lpr->row_stride[level] = align(nblocksx * block_size, util_cpu_caps.cacheline); in llvmpipe_texture_layout()
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_miptree.c78 unsigned nblocksx; member
284 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width); in nv30_miptree_transfer_map()
288 tx->nblocksx, tx->nblocksy, &tx->img); in nv30_miptree_transfer_map()
302 tx->tmp.w = tx->nblocksx; in nv30_miptree_transfer_map()