HomeSort by relevance Sort by last modified time
    Searched refs:qpitch (Results 1 - 10 of 10) sorted by null

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
tilingtraits.h 148 /// @param qpitch - surface qpitch in rows
154 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;
195 /// @param qpitch - depth pitch in rows
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::GetCv(), z >> TTraits::GetCr());
TilingFunctions.h 407 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, zOffsetSlices);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_tex_layout.c 387 * effectively end up with a packed qpitch anyway whenever
392 /* On Gen9 we can pick whatever qpitch we like as long as it's aligned
395 unsigned qpitch = mt->total_height; local
402 qpitch = ALIGN(qpitch, 8);
408 qpitch = ALIGN(qpitch, 32);
410 return qpitch;
474 /* When using the horizontal layout the qpitch specifies the distance in
479 mt->qpitch = mt->total_width
    [all...]
gen8_depth_state.c 81 OUT_BATCH(((depth - 1) << 21) | (depth_mt ? depth_mt->qpitch >> 2 : 0));
99 OUT_BATCH(depth_mt->hiz_buf->aux_base.qpitch >> 2);
132 OUT_BATCH(stencil_mt ? stencil_mt->qpitch >> 2 : 0);
intel_mipmap_tree.h 319 uint32_t qpitch; member in struct:intel_miptree_aux_buffer
518 uint32_t qpitch; member in struct:intel_mipmap_tree
    [all...]
intel_mipmap_tree.c 431 * used on Gen8 to make it pick a qpitch value which doesn't include space
433 * automatically pick a packed qpitch value whenever mt->first_level ==
436 * TODO: also disable this on Gen8 and pick the qpitch value like Gen9
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.cpp 142 pt->layer_stride = spr->swr.qpitch * spr->swr.pitch;
150 zbase = (z * spr->swr.qpitch + box->y) * spr->swr.pitch +
152 sbase = (z * spr->secondary.qpitch + box->y) * spr->secondary.pitch +
197 zbase = (z * spr->swr.qpitch + box.y) * spr->swr.pitch +
199 sbase = (z * spr->secondary.qpitch + box.y) * spr->secondary.pitch +
swr_screen.cpp 659 * | | qpitch
677 * height in rows is the qpitch. Array slices are laid out logically below
678 * one another, qpitch rows apart. For 3D surfaces, the "level" values are
682 * adjacent to each other on the X axis. The qpitch becomes the number of
717 res->swr.qpitch = util_format_get_nblocksx(fmt, width);
735 // The qpitch is controlled by either the height of the second LOD, or
748 res->swr.qpitch = util_format_get_nblocksy(fmt, height);
785 (size_t)res->swr.depth * res->swr.qpitch * res->swr.pitch;
803 res->secondary.depth * res->secondary.qpitch *
    [all...]
swr_state.cpp 742 swr->qpitch * swr->pitch;
754 jit_tex->img_stride[level] = swr->qpitch * swr->pitch;
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
state.h 497 uint32_t qpitch; member in struct:SWR_SURFACE_STATE
    [all...]

Completed in 805 milliseconds