Lines Matching refs:nNumFaces
286 @Input nNumFaces The number of faces
294 const unsigned int nNumFaces)
307 psMesh->pE = (PVRTShadowVolMEdge*)malloc(nNumFaces * sizeof(*psMesh->pE) * 3);
308 psMesh->pT = (PVRTShadowVolMTriangle*)malloc(nNumFaces * sizeof(*psMesh->pT));
313 for(nCurr = 0; nCurr < nNumFaces; nCurr++) {
321 _ASSERT(psMesh->nE < nNumFaces * 3);
322 _ASSERT(psMesh->nT == nNumFaces);
325 _RPT2(_CRT_WARN, "Unique edges : %d (from %d)\n", psMesh->nE, nNumFaces * 3);
326 _RPT2(_CRT_WARN, "Unique triangles: %d (from %d)\n", psMesh->nT, nNumFaces);