HomeSort by relevance Sort by last modified time
    Searched refs:m_nVtxCacheMax (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPrint3D.cpp 105 m_nVtxCacheMax(0), m_bRotate(false), m_nCachedNumVerts(0), m_pwzPreviousString(NULL), m_pszPreviousString(NULL), m_fPrevScale(0.0f), m_fPrevX(0.0f),
462 m_nVtxCacheMax = MIN_CACHED_VTX;
463 m_pVtxCache = (SPVRTPrint3DAPIVertex*)malloc(m_nVtxCacheMax * sizeof(*m_pVtxCache));
954 while(m_nVtxCache + (int)nVertices > m_nVtxCacheMax) {
960 m_nVtxCacheMax = PVRT_MIN(m_nVtxCacheMax * 2, MAX_CACHED_VTX);
961 SPVRTPrint3DAPIVertex* pTmp = (SPVRTPrint3DAPIVertex*)realloc(m_pVtxCache, m_nVtxCacheMax * sizeof(*m_pVtxCache));
973 _RPT1(_CRT_WARN, "Print3D: TextCache increased to %d vertices.\n", m_nVtxCacheMax);
    [all...]
PVRTPrint3D.h 428 int m_nVtxCacheMax;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
PVRTPrint3DAPI.cpp 239 _ASSERT(m_nVtxCache <= m_nVtxCacheMax);

Completed in 794 milliseconds