Lines Matching refs:nVertices
946 bool CPVRTPrint3D::DrawLine(SPVRTPrint3DAPIVertex *pVtx, unsigned int nVertices)
948 if(!nVertices)
951 _ASSERT((nVertices % 4) == 0);
952 _ASSERT((nVertices/4) < MAX_LETTERS);
954 while(m_nVtxCache + (int)nVertices > m_nVtxCacheMax) {
955 if(m_nVtxCache + nVertices > MAX_CACHED_VTX) {
976 memcpy(&m_pVtxCache[m_nVtxCache], pVtx, nVertices * sizeof(*pVtx));
977 m_nVtxCache += nVertices;