Searched defs:nVertices (Results 1 - 1 of 1) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTPrint3D.cpp946 bool CPVRTPrint3D::DrawLine(SPVRTPrint3DAPIVertex *pVtx, unsigned int nVertices) argument
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;

Completed in 26 milliseconds