Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dfrontend.cpp1282 …size_t requiredAllocSize = sizeof(simdvector) * RoundUpEven(requiredDSVectorInvocations) * tsState… in TessellationStages() local
1285 size_t requiredAllocSize = sizeof(simdvector) * requiredDSOutputVectors; in TessellationStages() local
1287 if (requiredAllocSize > gt_pTessellationThreadData->dsOutputAllocSize) in TessellationStages()
1290 … gt_pTessellationThreadData->pDSOutput = (simdscalar*)AlignedMalloc(requiredAllocSize, 64); in TessellationStages()
1291 gt_pTessellationThreadData->dsOutputAllocSize = requiredAllocSize; in TessellationStages()
1294 SWR_ASSERT(gt_pTessellationThreadData->dsOutputAllocSize >= requiredAllocSize); in TessellationStages()
1297 memset(gt_pTessellationThreadData->pDSOutput, 0x90, requiredAllocSize); in TessellationStages()