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

  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
tilemgr.cpp 212 void HotTileMgr::ClearColorHotTile(const HOTTILE* pHotTile) // clear a macro tile from float4 clear data.
215 float *pClearData = (float *)(pHotTile->clearData);
221 float *pfBuf = (float *)pHotTile->pBuffer;
222 uint32_t numSamples = pHotTile->numSamples;
246 void HotTileMgr::ClearDepthHotTile(const HOTTILE* pHotTile) // clear a macro tile from float4 clear data.
249 float *pClearData = (float *)(pHotTile->clearData);
252 float *pfBuf = (float *)pHotTile->pBuffer;
253 uint32_t numSamples = pHotTile->numSamples;
268 void HotTileMgr::ClearStencilHotTile(const HOTTILE* pHotTile)
271 uint8_t clearVal = (uint8_t)(pHotTile->clearData[0])
    [all...]
backend_clear.cpp 149 HOTTILE *pHotTile = pDC->pContext->pHotTileMgr->GetHotTile(pDC->pContext, pDC, macroTile, rt, true, numSamples, renderTargetArrayIndex);
151 uint8_t* pRasterTileRow = pHotTile->pBuffer + rasterTileStartOffset; //(ComputeTileOffset2D< TilingTraits<SWR_TILE_SWRZ, FormatTraits<format>::bpp > >(pitch, x, y)) * numSamples;
168 pHotTile->state = HOTTILE_DIRTY;
194 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, (SWR_RENDERTARGET_ATTACHMENT)rt, true, numSamples, pClear->renderTargetArrayIndex);
197 pHotTile->clearData[0] = *(DWORD*)&(pClear->clearRTColor[0]);
198 pHotTile->clearData[1] = *(DWORD*)&(pClear->clearRTColor[1]);
199 pHotTile->clearData[2] = *(DWORD*)&(pClear->clearRTColor[2]);
200 pHotTile->clearData[3] = *(DWORD*)&(pClear->clearRTColor[3]);
201 pHotTile->state = HOTTILE_CLEAR;
207 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, SWR_ATTACHMENT_DEPTH, true, numSampl (…)
    [all...]
backend.cpp 132 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTileNoLoad(pContext, pDC, macroTile, attachment, false);
133 if (pHotTile)
136 if (pHotTile->state == HOTTILE_CLEAR)
141 pfnClearTiles(pDC, attachment, macroTile, pHotTile->renderTargetArrayIndex, pHotTile->clearData, pDesc->rect);
144 if (pHotTile->state == HOTTILE_DIRTY || pDesc->postStoreTileState == (SWR_TILE_STATE)HOTTILE_DIRTY)
150 attachment, destX, destY, pHotTile->renderTargetArrayIndex, pHotTile->pBuffer);
154 if (pHotTile->state == HOTTILE_DIRTY || pHotTile->state == HOTTILE_RESOLVED
    [all...]
tilemgr.h 313 static void ClearColorHotTile(const HOTTILE* pHotTile);
314 static void ClearDepthHotTile(const HOTTILE* pHotTile);
315 static void ClearStencilHotTile(const HOTTILE* pHotTile);

Completed in 148 milliseconds