Home
last modified time | relevance | path

Searched refs:m_nVtxCacheMax (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTPrint3D.cpp105m_nVtxCacheMax(0), m_bRotate(false), m_nCachedNumVerts(0), m_pwzPreviousString(NULL), m_pszPreviou… in CPVRTPrint3D()
462 m_nVtxCacheMax = MIN_CACHED_VTX; in SetTextures()
463 m_pVtxCache = (SPVRTPrint3DAPIVertex*)malloc(m_nVtxCacheMax * sizeof(*m_pVtxCache)); in SetTextures()
954 while(m_nVtxCache + (int)nVertices > m_nVtxCacheMax) { in DrawLine()
960 m_nVtxCacheMax = PVRT_MIN(m_nVtxCacheMax * 2, MAX_CACHED_VTX); in DrawLine()
961 …SPVRTPrint3DAPIVertex* pTmp = (SPVRTPrint3DAPIVertex*)realloc(m_pVtxCache, m_nVtxCacheMax * sizeof… in DrawLine()
973 _RPT1(_CRT_WARN, "Print3D: TextCache increased to %d vertices.\n", m_nVtxCacheMax); in DrawLine()
DPVRTPrint3D.h428 int m_nVtxCacheMax; variable
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
DPVRTPrint3DAPI.cpp239 _ASSERT(m_nVtxCache <= m_nVtxCacheMax); in Flush()