HomeSort by relevance Sort by last modified time
    Searched refs:qpitch (Results 1 - 9 of 9) 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/gallium/drivers/swr/
swr_context.cpp 141 pt->layer_stride = spr->swr.qpitch * spr->swr.pitch;
149 zbase = (z * spr->swr.qpitch + box->y) * spr->swr.pitch +
151 sbase = (z * spr->secondary.qpitch + box->y) * spr->secondary.pitch +
196 zbase = (z * spr->swr.qpitch + box.y) * spr->swr.pitch +
198 sbase = (z * spr->secondary.qpitch + box.y) * spr->secondary.pitch +
swr_screen.cpp 689 * | | qpitch
707 * height in rows is the qpitch. Array slices are laid out logically below
708 * one another, qpitch rows apart. For 3D surfaces, the "level" values are
712 * adjacent to each other on the X axis. The qpitch becomes the number of
755 res->swr.qpitch = util_format_get_nblocksx(fmt, width);
773 // The qpitch is controlled by either the height of the second LOD, or
786 res->swr.qpitch = util_format_get_nblocksy(fmt, height);
822 size_t total_size = (uint64_t)res->swr.depth * res->swr.qpitch *
842 total_size = res->secondary.depth * res->secondary.qpitch *
    [all...]
swr_state.cpp 808 swr->qpitch * swr->pitch;
820 jit_tex->img_stride[level] = swr->qpitch * swr->pitch;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen8_depth_state.c 99 OUT_BATCH(depth_mt->hiz_buf->qpitch >> 2);
intel_mipmap_tree.h 182 uint32_t qpitch; member in struct:intel_miptree_aux_buffer
intel_mipmap_tree.c 978 mt->mcs_buf->qpitch = 0;
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
state.h 530 uint32_t qpitch; member in struct:SWR_SURFACE_STATE
    [all...]

Completed in 611 milliseconds