Changeset 10601 for OpenSceneGraph/trunk/include/osg/DisplaySettings
- Timestamp:
- 10/03/09 11:25:23 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/DisplaySettings (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/DisplaySettings
r10588 r10601 204 204 unsigned int getMaxTexturePoolSize() const { return _maxTexturePoolSize; } 205 205 206 void setMaxVBOPoolSize(unsigned int size) { _maxVBOPoolSize = size; } 207 unsigned int getMaxVBOPoolSize() const { return _maxVBOPoolSize; } 208 209 void setMaxFBOPoolSize(unsigned int size) { _maxFBOPoolSize = size; } 210 unsigned int getMaxFBOPoolSize() const { return _maxFBOPoolSize; } 206 void setMaxBufferObjectPoolSize(unsigned int size) { _maxBufferObjectPoolSize = size; } 207 unsigned int getMaxBufferObjectPoolSize() const { return _maxBufferObjectPoolSize; } 211 208 212 209 protected: … … 252 249 253 250 unsigned int _maxTexturePoolSize; 254 unsigned int _maxVBOPoolSize; 255 unsigned int _maxFBOPoolSize; 251 unsigned int _maxBufferObjectPoolSize; 256 252 }; 257 253
