Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dbackend.cpp71 SWR_CS_CONTEXT csContext{ 0 }; in ProcessComputeBE() local
72 csContext.tileCounter = threadGroupId; in ProcessComputeBE()
73 csContext.dispatchDims[0] = pTaskData->threadGroupCountX; in ProcessComputeBE()
74 csContext.dispatchDims[1] = pTaskData->threadGroupCountY; in ProcessComputeBE()
75 csContext.dispatchDims[2] = pTaskData->threadGroupCountZ; in ProcessComputeBE()
76 csContext.pTGSM = pContext->ppScratch[workerId]; in ProcessComputeBE()
77 csContext.pSpillFillBuffer = (uint8_t*)pSpillFillBuffer; in ProcessComputeBE()
78 csContext.pScratchSpace = (uint8_t*)pScratchSpace; in ProcessComputeBE()
79 csContext.scratchSpacePerSimd = pDC->pState->state.scratchSpaceSize; in ProcessComputeBE()
81 state.pfnCsFunc(GetPrivateState(pDC), &csContext); in ProcessComputeBE()