Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp637 uint32_t curDraw = curDrawFE; in WorkOnFifoFE() local
638 while (IDComparesLess(curDraw, drawEnqueued)) in WorkOnFifoFE()
640 uint32_t dcSlot = curDraw % KNOB_MAX_DRAWS_IN_FLIGHT; in WorkOnFifoFE()
659 curDraw++; in WorkOnFifoFE()
755 auto threadHasWork = [&](uint32_t curDraw) { return curDraw != pContext->dcRing.GetHead(); }; in workerThreadMain() argument
Dapi.cpp213 … uint32_t curDraw[2] = { pContext->pCurDrawContext->drawId, pContext->pCurDrawContext->drawId }; in QueueWork() local
214 WorkOnFifoFE(pContext, 0, curDraw[0]); in QueueWork()
215 WorkOnFifoBE(pContext, 0, curDraw[1], pContext->singleThreadLockedTiles, 0, 0); in QueueWork()
263 uint64_t curDraw = pContext->dcRing.GetHead(); in GetDrawContext() local
264 uint32_t dcIndex = curDraw % KNOB_MAX_DRAWS_IN_FLIGHT; in GetDrawContext()
267 (curDraw - pContext->lastDrawChecked) > 0x10000) in GetDrawContext()
273 pContext->lastDrawChecked = curDraw; in GetDrawContext()