Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_transfer.c11 uint32_t nblocksx; member
61 uint32_t nblocksx, uint32_t nblocksy) in nv50_2d_transfer_rect() argument
147 PUSH_DATA (push, nblocksx); in nv50_2d_transfer_rect()
167 uint32_t nblocksx, uint32_t nblocksy) in nv50_m2mf_transfer_rect() argument
193 nv50_2d_transfer_rect(nv50, dst, src, nblocksx, nblocksy); in nv50_m2mf_transfer_rect()
261 PUSH_DATA (push, nblocksx * cpp); in nv50_m2mf_transfer_rect()
401 tx->nblocksx = box->width << mt->ms_x; in nv50_miptree_transfer_map()
404 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nv50_miptree_transfer_map()
408 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); in nv50_miptree_transfer_map()
423 tx->rect[1].width = tx->nblocksx; in nv50_miptree_transfer_map()
[all …]
Dnv50_context.h322 uint32_t nblocksx, uint32_t nblocksy);
/third_party/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
189 PUSH_DATA (push, nblocksx); in nve4_m2mf_transfer_rect()
412 tx->nblocksx = box->width << mt->ms_x; in nvc0_miptree_transfer_map()
415 tx->nblocksx = util_format_get_nblocksx(res->format, box->width); in nvc0_miptree_transfer_map()
433 tx->base.stride = tx->nblocksx * util_format_get_blocksize(res->format); in nvc0_miptree_transfer_map()
449 tx->rect[1].width = tx->nblocksx; in nvc0_miptree_transfer_map()
461 tx->nblocksx, tx->nblocksy); in nvc0_miptree_transfer_map()
[all …]
Dnvc0_context.h187 uint32_t nblocksx, uint32_t nblocksy);
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_resource_texture.c129 tex->image_offset[level][0].nblocksx = 0; in i915_texture_set_level_info()
138 x = tex->image_offset[level][layer].nblocksx * in i915_texture_offset()
147 unsigned img, unsigned nblocksx, in i915_texture_set_image_offset() argument
151 assert(!(img == 0 && level == 0) || (nblocksx == 0 && nblocksy == 0)); in i915_texture_set_image_offset()
154 tex->image_offset[level][img].nblocksx = nblocksx; in i915_texture_set_image_offset()
471 unsigned nblocksx = util_format_get_nblocksx(pt->format, width); in i945_texture_layout_2d() local
491 if (mip1_nblocksx > nblocksx) in i945_texture_layout_2d()
512 x += nblocksx; in i945_texture_layout_2d()
519 nblocksx = align_nblocksx(pt->format, width, align_x); in i945_texture_layout_2d()
Di915_resource.h57 unsigned short nblocksx; member
Di915_state_static.c97 x = tex->image_offset[cbuf_surface->u.tex.level][layer].nblocksx; in update_framebuffer()
/third_party/mesa3d/src/freedreno/fdl/
Dfreedreno_layout.h248 uint32_t nblocksx = util_format_get_nblocksx(layout->format, layout->width0); in fdl_set_pitchalign() local
250 layout->pitch0 = align(nblocksx * layout->cpp, 1 << pitchalign); in fdl_set_pitchalign()
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_resource_texture.c276 unsigned nblocksx, nblocksy; in svga_texture_transfer_map_dma() local
281 nblocksx = util_format_get_nblocksx(texture->format, st->box.w); in svga_texture_transfer_map_dma()
285 st->base.stride = nblocksx*util_format_get_blocksize(texture->format); in svga_texture_transfer_map_dma()
349 unsigned w, h, nblocksx, nblocksy, i; in svga_texture_transfer_map_direct() local
396 nblocksx = util_format_get_nblocksx(texture->format, w); in svga_texture_transfer_map_direct()
399 st->base.stride = nblocksx*util_format_get_blocksize(texture->format); in svga_texture_transfer_map_direct()
1330 unsigned nblocksx, nblocksy; in svga_texture_transfer_map_upload() local
1363 nblocksx = util_format_get_nblocksx(texture->format, st->base.box.width); in svga_texture_transfer_map_upload()
1366 st->base.stride = nblocksx * util_format_get_blocksize(texture->format); in svga_texture_transfer_map_upload()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_texture.c101 unsigned align_x, align_y, nblocksx, nblocksy, block_size, num_slices; in llvmpipe_texture_layout() local
123 nblocksx = util_format_get_nblocksx(pt->format, in llvmpipe_texture_layout()
130 lpr->row_stride[level] = nblocksx * block_size; in llvmpipe_texture_layout()
132 lpr->row_stride[level] = align(nblocksx * block_size, util_get_cpu_caps()->cacheline); in llvmpipe_texture_layout()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_miptree.c83 unsigned nblocksx; member
304 tx->nblocksx = util_format_get_nblocksx(pt->format, box->width); in nv30_miptree_transfer_map()
323 tx->tmp.w = tx->nblocksx; in nv30_miptree_transfer_map()