Definition at line 208 of file OglImageCache.h. References mCacheSize, mImages, and mLRU. Referenced by OglImageCache(). 00209 { 00210 mCacheSize = size; 00211 00212 for (int i=0; i<mCacheSize; i++) 00213 { 00214 mImages.push_back(new ImIdPair(0,-1)); 00215 mLRU.push_back(i); 00216 } 00217 }
|