Lines Matching refs:tileIndex
1498 UINT_32 tileIndex; in HwlComputeXmaskCoordFromAddr() local
1501 tileIndex = (UINT_32)(localOffset * 2 + (bitPosition != 0)); in HwlComputeXmaskCoordFromAddr()
1505 tileIndex = (UINT_32)(localOffset / 4); in HwlComputeXmaskCoordFromAddr()
1518 *pSlice = tileIndex / (sliceSizeInTile / numPipes); in HwlComputeXmaskCoordFromAddr()
1519 macroOffset = tileIndex % (sliceSizeInTile / numPipes); in HwlComputeXmaskCoordFromAddr()
1527 const UINT_32 clIndex = tileIndex / tileNumPerPipe; in HwlComputeXmaskCoordFromAddr()
1536 macroOffset = tileIndex % tileNumPerPipe; in HwlComputeXmaskCoordFromAddr()
2226 pOut->tileIndex = index; in HwlSetupTileInfo()
2645 pOut->tileIndex = pIn->tileIndex; in HwlComputeSurfaceInfo()
2649 UINT_32 tileIndex = static_cast<UINT_32>(pOut->tileIndex); in HwlComputeSurfaceInfo() local
2654 (tileIndex < TileTableSize)) in HwlComputeSurfaceInfo()
2667 (tileIndex == SiUncompressDepthTileIndex)) in HwlComputeSurfaceInfo()
2674 pOut->equationIndex = m_equationLookupTable[Log2(pIn->bpp >> 3)][tileIndex]; in HwlComputeSurfaceInfo()
3159 pSurfIn->tileIndex = pFmaskIn->tileIndex; in HwlFmaskPreThunkSurfInfo()
3178 pFmaskOut->tileIndex = pSurfOut->tileIndex; in HwlFmaskPostThunkSurfInfo()
3583 for (INT_32 tileIndex = 0; tileIndex < static_cast<INT_32>(m_noOfEntries); tileIndex++) in InitEquationTable() local
3587 TileConfig tileConfig = m_tileTable[tileIndex]; in InitEquationTable()
3593 HwlComputeMacroModeIndex(tileIndex, flags, bpp, 1, &tileConfig.info, NULL, NULL); in InitEquationTable()
3596 if (IsEquationSupported(bpp, tileConfig, tileIndex, log2ElementBytes) == TRUE) in InitEquationTable()
3613 ((1 << tileIndex) & SiPrtTileIndexMask)) ? 1 : 0; in InitEquationTable()
3718 m_equationLookupTable[log2ElementBytes][tileIndex] = equationIndex; in InitEquationTable()
3779 INT_32 tileIndex, ///< Tile index in IsEquationSupported() argument
3816 supported = m_EquationSupport[tileIndex][elementBytesLog2]; in IsEquationSupported()