Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dbackend.cpp57 const COMPUTE_DESC* pTaskData = (COMPUTE_DESC*)pDC->pDispatch->GetTasksData(); in ProcessComputeBE() local
58 SWR_ASSERT(pTaskData != nullptr); in ProcessComputeBE()
78 csContext.dispatchDims[0] = pTaskData->threadGroupCountX; in ProcessComputeBE()
79 csContext.dispatchDims[1] = pTaskData->threadGroupCountY; in ProcessComputeBE()
80 csContext.dispatchDims[2] = pTaskData->threadGroupCountZ; in ProcessComputeBE()
Dtilemgr.h160 void initialize(uint32_t totalTasks, void* pTaskData, PFN_DISPATCH pfnDispatch) in initialize() argument
171 mpTaskData = pTaskData; in initialize()
Dapi.cpp1564 COMPUTE_DESC* pTaskData = (COMPUTE_DESC*)pDC->pArena->AllocAligned(sizeof(COMPUTE_DESC), 64); in SwrDispatch() local
1566 pTaskData->threadGroupCountX = threadGroupCountX; in SwrDispatch()
1567 pTaskData->threadGroupCountY = threadGroupCountY; in SwrDispatch()
1568 pTaskData->threadGroupCountZ = threadGroupCountZ; in SwrDispatch()
1570 pTaskData->enableThreadDispatch = false; in SwrDispatch()
1575 pDC->pDispatch->initialize(totalThreadGroups, pTaskData, &ProcessComputeBE); in SwrDispatch()