Home
last modified time | relevance | path

Searched refs:heightAlign (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/amd/addrlib/src/r800/
Degbaddrlib.cpp241 &pOut->heightAlign); in ComputeSurfaceInfoLinear()
268 &expHeight, pOut->heightAlign, in ComputeSurfaceInfoLinear()
286 &pOut->heightAlign); in ComputeSurfaceInfoLinear()
288 if ((pIn->pitchAlign != 0) || (pIn->heightAlign != 0)) in ComputeSurfaceInfoLinear()
307 if (pIn->heightAlign != 0) in ComputeSurfaceInfoLinear()
309 ADDR_ASSERT((pIn->heightAlign % pOut->heightAlign) == 0); in ComputeSurfaceInfoLinear()
310 pOut->heightAlign = pIn->heightAlign; in ComputeSurfaceInfoLinear()
312 if (IsPow2(pOut->heightAlign)) in ComputeSurfaceInfoLinear()
314 expHeight = PowTwoAlign(expHeight, pOut->heightAlign); in ComputeSurfaceInfoLinear()
318 expHeight += pOut->heightAlign - 1; in ComputeSurfaceInfoLinear()
[all …]
Dciaddrlib.h146 UINT_32* pPitch, UINT_32 *PitchAlign, UINT_32 height, UINT_32 heightAlign) const;
Dciaddrlib.cpp2113 UINT_32 heightAlign ///< [in] height alignment in HwlPadDimensions()
2137 UINT_32 macroTilePixelAlign = (*pPitchAlign) * heightAlign; in HwlPadDimensions()
2144 UINT_32 heightInMacroTile = height / heightAlign; in HwlPadDimensions()
Degbaddrlib.h243 UINT_32 pitchAlign, UINT_32 heightAlign,
Dsiaddrlib.cpp1716 UINT_32 heightAlign = 1; in HwlGetSizeAdjustmentLinear() local
1718 while ((pitch * heightAlign) % sliceAlignInPixel) in HwlGetSizeAdjustmentLinear()
1720 heightAlign++; in HwlGetSizeAdjustmentLinear()
1723 *pHeightAlign = heightAlign; in HwlGetSizeAdjustmentLinear()
/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrlib1.h378 UINT_32* pPitch, UINT_32* pPitchAlign, UINT_32* pHeight, UINT_32 heightAlign,
384 UINT_32* pPitch, UINT_32* pPitchAlign, UINT_32 height, UINT_32 heightAlign) const in HwlPadDimensions() argument
Daddrlib1.cpp3270 UINT_32 heightAlign, ///< [in] height alignment in PadDimensions() argument
3318 if (IsPow2(heightAlign)) in PadDimensions()
3320 *pHeight = PowTwoAlign((*pHeight), heightAlign); in PadDimensions()
3324 *pHeight += heightAlign - 1; in PadDimensions()
3325 *pHeight /= heightAlign; in PadDimensions()
3326 *pHeight *= heightAlign; in PadDimensions()
3356 heightAlign); in PadDimensions()
/third_party/mesa3d/src/amd/addrlib/inc/
Daddrinterface.h576 UINT_32 heightAlign; ///< Height alignment request from client member
601 UINT_32 heightAlign; ///< Height alignment, in elements member
1327 UINT_32 heightAlign; ///< Height alignment member
/third_party/mesa3d/src/amd/addrlib/src/gfx9/
Dgfx9addrlib.cpp4147 UINT_32 heightAlign = 0; in HwlComputeSurfaceInfoTiled() local
4151 returnCode = ComputeStereoInfo(pIn, pOut, &heightAlign); in HwlComputeSurfaceInfoTiled()
4158 if (heightAlign > 1) in HwlComputeSurfaceInfoTiled()
4160 pOut->height = PowTwoAlign(pOut->height, heightAlign); in HwlComputeSurfaceInfoTiled()
/third_party/mesa3d/src/amd/addrlib/src/gfx11/
Dgfx11addrlib.cpp3141 UINT_32 heightAlign = pOut->blockHeight; in ComputeSurfaceInfoMacroTiled() local
3147 returnCode = ComputeStereoInfo(pIn, &heightAlign, &rightXor); in ComputeSurfaceInfoMacroTiled()
3161 pOut->height = PowTwoAlign(pIn->height, heightAlign); in ComputeSurfaceInfoMacroTiled()
/third_party/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10addrlib.cpp3658 UINT_32 heightAlign = pOut->blockHeight; in ComputeSurfaceInfoMacroTiled() local
3664 returnCode = ComputeStereoInfo(pIn, &heightAlign, &rightXor); in ComputeSurfaceInfoMacroTiled()
3678 pOut->height = PowTwoAlign(pIn->height, heightAlign); in ComputeSurfaceInfoMacroTiled()
/third_party/mesa3d/src/amd/common/
Dac_surface.c724 surf->prt_tile_height = AddrSurfInfoOut->heightAlign; in gfx6_compute_level()