HomeSort by relevance Sort by last modified time
    Searched refs:pHotTile (Results 1 - 3 of 3) 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.cpp 207 HOTTILE *pHotTile = pDC->pContext->pHotTileMgr->GetHotTile(pDC->pContext, pDC, macroTile, rt, true, numSamples, renderTargetArrayIndex);
209 uint8_t* pRasterTileRow = pHotTile->pBuffer + rasterTileStartOffset; //(ComputeTileOffset2D< TilingTraits<SWR_TILE_SWRZ, FormatTraits<format>::bpp > >(pitch, x, y)) * numSamples;
226 pHotTile->state = HOTTILE_DIRTY;
252 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, (SWR_RENDERTARGET_ATTACHMENT)rt, true, numSamples, pClear->renderTargetArrayIndex);
255 pHotTile->clearData[0] = *(DWORD*)&(pClear->clearRTColor[0]);
256 pHotTile->clearData[1] = *(DWORD*)&(pClear->clearRTColor[1]);
257 pHotTile->clearData[2] = *(DWORD*)&(pClear->clearRTColor[2]);
258 pHotTile->clearData[3] = *(DWORD*)&(pClear->clearRTColor[3]);
259 pHotTile->state = HOTTILE_CLEAR;
265 HOTTILE *pHotTile = pContext->pHotTileMgr->GetHotTile(pContext, pDC, macroTile, SWR_ATTACHMENT_DEPTH, true, numSampl (…)
    [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 851 milliseconds