Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_tex_layout.c395 unsigned qpitch = mt->total_height; in brw_miptree_get_vertical_slice_pitch() local
402 qpitch = ALIGN(qpitch, 8); in brw_miptree_get_vertical_slice_pitch()
408 qpitch = ALIGN(qpitch, 32); in brw_miptree_get_vertical_slice_pitch()
410 return qpitch; in brw_miptree_get_vertical_slice_pitch()
479 mt->qpitch = mt->total_width; in brw_miptree_layout_texture_array()
481 mt->qpitch = brw_miptree_get_vertical_slice_pitch(brw, mt, 0); in brw_miptree_layout_texture_array()
485 physical_qpitch = (mt->compressed && brw->gen < 9 ? mt->qpitch / 4 : in brw_miptree_layout_texture_array()
486 mt->qpitch); in brw_miptree_layout_texture_array()
Dgen8_depth_state.c81 OUT_BATCH(((depth - 1) << 21) | (depth_mt ? depth_mt->qpitch >> 2 : 0)); in emit_depth_packets()
99 OUT_BATCH(depth_mt->hiz_buf->aux_base.qpitch >> 2); in emit_depth_packets()
132 OUT_BATCH(stencil_mt ? stencil_mt->qpitch >> 2 : 0); in emit_depth_packets()
Dintel_mipmap_tree.c1508 buf->qpitch = temp_mt->qpitch; in intel_mcs_miptree_buf_create()
1607 buf->qpitch = isl_surf_get_array_pitch_sa_rows(&temp_ccs_surf); in intel_miptree_alloc_non_msrt_mcs()
1845 buf->aux_base.qpitch = h0 + MAX2(h1, sum_h_i); in intel_gen8_hiz_buf_create()
1852 hz_height = DIV_ROUND_UP(buf->aux_base.qpitch, 2 * 8) * 8 * Z0; in intel_gen8_hiz_buf_create()
1909 buf->aux_base.qpitch = buf->mt->qpitch; in intel_hiz_miptree_buf_create()
3354 surf->array_pitch_el_rows = mt->qpitch; in intel_miptree_get_isl_surf()
3358 assert(mt->qpitch % bh == 0); in intel_miptree_get_isl_surf()
3359 surf->array_pitch_el_rows = mt->qpitch / bh; in intel_miptree_get_isl_surf()
3417 aux_qpitch = mt->mcs_buf->qpitch; in intel_miptree_get_aux_isl_surf()
3433 aux_qpitch = mt->hiz_buf->mt->qpitch; in intel_miptree_get_aux_isl_surf()
[all …]
Dintel_mipmap_tree.h319 uint32_t qpitch; member
518 uint32_t qpitch; member
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
Dtilingtraits.h154 INLINE UINT ComputeTileOffset3D(UINT qpitch, UINT pitch, UINT tileX, UINT tileY, UINT tileZ)
156 …UINT tileID = (tileZ * (qpitch >> TTraits::GetCv()) + tileY) * (pitch >> TTraits::GetCu()) + tileX;
201 INLINE UINT ComputeOffset3D(UINT qpitch, UINT pitch, UINT x, UINT y, UINT z)
203 …UINT tileID = ComputeTileOffset3D<TTraits>(qpitch, pitch, x >> TTraits::GetCu(), y >> TTraits::Get…
DTilingFunctions.h407 xOffsetBytes = (array * pState->qpitch + lodOffset + x) * info.Bpp;
550 yOffsetRows = (array * pState->qpitch) + lodOffsetY + y + pState->yOffset;
606 …return ComputeOffset3D<TTraits>(pState->qpitch, pState->pitch, xOffsetBytes, yOffsetRows, zOffsetS…
/external/mesa3d/src/gallium/drivers/swr/
Dswr_context.cpp142 pt->layer_stride = spr->swr.qpitch * spr->swr.pitch; in swr_transfer_map()
150 zbase = (z * spr->swr.qpitch + box->y) * spr->swr.pitch + in swr_transfer_map()
152 sbase = (z * spr->secondary.qpitch + box->y) * spr->secondary.pitch + in swr_transfer_map()
197 zbase = (z * spr->swr.qpitch + box.y) * spr->swr.pitch + in swr_transfer_flush_region()
199 sbase = (z * spr->secondary.qpitch + box.y) * spr->secondary.pitch + in swr_transfer_flush_region()
Dswr_screen.cpp717 res->swr.qpitch = util_format_get_nblocksx(fmt, width); in swr_texture_layout()
748 res->swr.qpitch = util_format_get_nblocksy(fmt, height); in swr_texture_layout()
785 (size_t)res->swr.depth * res->swr.qpitch * res->swr.pitch; in swr_texture_layout()
803 res->secondary.depth * res->secondary.qpitch * in swr_texture_layout()
Dswr_state.cpp742 swr->qpitch * swr->pitch; in swr_update_texture_state()
754 jit_tex->img_stride[level] = swr->qpitch * swr->pitch; in swr_update_texture_state()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dstate.h497 uint32_t qpitch; member