Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/
Dswr_context.cpp406 swr_UpdateStats(HANDLE hPrivateContext, const SWR_STATS *pStats) in swr_UpdateStats() argument
413 struct swr_query_result *pqr = (struct swr_query_result *)pDC->pStats; in swr_UpdateStats()
417 pSwrStats->DepthPassCount += pStats->DepthPassCount; in swr_UpdateStats()
418 pSwrStats->PsInvocations += pStats->PsInvocations; in swr_UpdateStats()
419 pSwrStats->CsInvocations += pStats->CsInvocations; in swr_UpdateStats()
423 swr_UpdateStatsFE(HANDLE hPrivateContext, const SWR_STATS_FE *pStats) in swr_UpdateStatsFE() argument
430 struct swr_query_result *pqr = (struct swr_query_result *)pDC->pStats; in swr_UpdateStatsFE()
433 p_atomic_add(&pSwrStats->IaVertices, pStats->IaVertices); in swr_UpdateStatsFE()
434 p_atomic_add(&pSwrStats->IaPrimitives, pStats->IaPrimitives); in swr_UpdateStatsFE()
435 p_atomic_add(&pSwrStats->VsInvocations, pStats->VsInvocations); in swr_UpdateStatsFE()
[all …]
Dswr_context.h97 void *pStats;
180 ctx->swrDC.pStats = pqr;
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dcontext.h368 SWR_STATS* pSavePtr = pStats; in Reset()
370 pStats = pSavePtr; in Reset()
371 memset(pStats, 0, sizeof(SWR_STATS) * numThreads); in Reset()
378 SWR_STATS* pStats; member
493 SWR_STATS* pStats; member
511 #define UPDATE_STAT_BE(name, count) if (GetApiState(pDC).enableStatsBE) { pDC->dynState.pStats[work…
Dthreads.cpp345 stats.DepthPassCount += dynState.pStats[i].DepthPassCount; in UpdateClientStats()
347 stats.PsInvocations += dynState.pStats[i].PsInvocations; in UpdateClientStats()
348 stats.CsInvocations += dynState.pStats[i].CsInvocations; in UpdateClientStats()
947 pContext->dcRing[dc].dynState.pStats = new SWR_STATS[numThreads]; in CreateThreadPool()
948 memset(pContext->dcRing[dc].dynState.pStats, 0, sizeof(SWR_STATS) * numThreads); in CreateThreadPool()
Dapi.h161 const SWR_STATS* pStats);
171 const SWR_STATS_FE* pStats);
Dapi.cpp112 pContext->pStats = new SWR_STATS[pContext->NumWorkerThreads]; in SwrCreateContext()
371 delete[] pContext->dcRing[i].dynState.pStats; in SwrDestroyContext()
396 delete[] pContext->pStats; in SwrDestroyContext()
/external/mesa3d/include/d3dadapter/
Dpresent.h84 HRESULT (WINAPI *GetPresentStats)(ID3DPresent *This, D3DPRESENTSTATS *pStats);