Searched refs:m_totalCost (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.cpp52 : m_totalCost(0)
58 int m_totalCost; member in class:WebCore::TextureMapperCache
71 if (m_totalCost <= TextureMapperCache::MaxCost)
76 m_totalCost = 0;
78 m_totalCost += m_data[i].computeCost();
80 for (int i = size-1; i >= 0 && m_totalCost > TextureMapperCache::MaxCost - TextureMapperCache::PurgeAmount; --i) {
84 m_totalCost -= entry.previousCost;
107 m_totalCost -= previousCost;
108 m_totalCost += (entry.previousCost = cost);

Completed in 40 milliseconds