Lines Matching refs:sNew
549 SMesh sNew; in SplitMesh() local
565 sNew.nVtxNum = nVtxNum; in SplitMesh()
566 sNew.ppVtx = pMesh->ppVtx; in SplitMesh()
567 m_pvMesh[nVtxNum-3].push_back(sNew); in SplitMesh()
595 SMesh sNew; in ResizeMesh() local
610 sNew.nVtxNum = (int)(ppW - ppVtx); in ResizeMesh()
611 _ASSERT(sNew.nVtxNum <= nVtxNum); in ResizeMesh()
614 if(sNew.nVtxNum) { in ResizeMesh()
615 _ASSERT(sNew.nVtxNum >= 3); in ResizeMesh()
616 _ASSERT(sNew.nVtxNum < m_nVtxLimit); in ResizeMesh()
618 sNew.ppVtx = ppVtx; in ResizeMesh()
619 m_pvMesh[sNew.nVtxNum-3].push_back(sNew); in ResizeMesh()