Lines Matching refs:pE
146 (psMesh->pE[nCurr].wV0 == wV0 && psMesh->pE[nCurr].wV1 == wV1) || in FindOrCreateEdge()
147 (psMesh->pE[nCurr].wV0 == wV1 && psMesh->pE[nCurr].wV1 == wV0)) in FindOrCreateEdge()
157 psMesh->pE[psMesh->nE].wV0 = wV0; in FindOrCreateEdge()
158 psMesh->pE[psMesh->nE].wV1 = wV1; in FindOrCreateEdge()
159 psMesh->pE[psMesh->nE].nVis = 0; in FindOrCreateEdge()
246 psE0 = &psMesh->pE[wE0]; in FindOrCreateTriangle()
247 psE1 = &psMesh->pE[wE1]; in FindOrCreateTriangle()
248 psE2 = &psMesh->pE[wE2]; in FindOrCreateTriangle()
307 psMesh->pE = (PVRTShadowVolMEdge*)malloc(nNumFaces * sizeof(*psMesh->pE) * 3); in PVRTShadowVolMeshCreateMesh()
310 _ASSERT(psMesh->pE); in PVRTShadowVolMeshCreateMesh()
332 psMesh->pE = (PVRTShadowVolMEdge*)realloc(psMesh->pE, psMesh->nE * sizeof(*psMesh->pE)); in PVRTShadowVolMeshCreateMesh()
335 _ASSERT(psMesh->pE); in PVRTShadowVolMeshCreateMesh()
557 FREE(psMesh->pE); in PVRTShadowVolMeshDestroyMesh()
693 pE0 = &psMesh->pE[psTri->wE0]; in PVRTShadowVolSilhouetteProjectedBuild()
694 pE1 = &psMesh->pE[psTri->wE1]; in PVRTShadowVolSilhouetteProjectedBuild()
695 pE2 = &psMesh->pE[psTri->wE2]; in PVRTShadowVolSilhouetteProjectedBuild()
749 psEdge = &psMesh->pE[nCurr]; in PVRTShadowVolSilhouetteProjectedBuild()