Searched refs:m_nVtxCache (Results 1 – 3 of 3) sorted by relevance
238 _ASSERT((m_nVtxCache % 4) == 0); in Flush()239 _ASSERT(m_nVtxCache <= m_nVtxCacheMax); in Flush()245 if(m_nVtxCache) in Flush()284 nTrisTot = m_nVtxCache >> 1; in Flush()288 while(m_nVtxCache) in Flush()290 nVtx = PVRT_MIN(m_nVtxCache, 0xFFFC); in Flush()309 m_nVtxCache -= nVtx; in Flush()
104 …m_pwFacesFont(NULL), m_pPrint3dVtx(NULL), m_bTexturesSet(false), m_pVtxCache(NULL), m_nVtxCache(0), in CPVRTPrint3D()464 m_nVtxCache = 0; in SetTextures()954 while(m_nVtxCache + (int)nVertices > m_nVtxCacheMax) { in DrawLine()955 if(m_nVtxCache + nVertices > MAX_CACHED_VTX) { in DrawLine()976 memcpy(&m_pVtxCache[m_nVtxCache], pVtx, nVertices * sizeof(*pVtx)); in DrawLine()977 m_nVtxCache += nVertices; in DrawLine()
427 int m_nVtxCache; variable