Changeset 10588 for OpenSceneGraph/trunk/include/osg/DisplaySettings
- Timestamp:
- 09/22/09 20:45:24 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/DisplaySettings (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/DisplaySettings
r10350 r10588 199 199 void setApplication(const std::string& application) { _application = application; } 200 200 const std::string& getApplication() { return _application; } 201 202 203 void setMaxTexturePoolSize(unsigned int size) { _maxTexturePoolSize = size; } 204 unsigned int getMaxTexturePoolSize() const { return _maxTexturePoolSize; } 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; } 201 211 202 212 protected: … … 241 251 std::string _application; 242 252 253 unsigned int _maxTexturePoolSize; 254 unsigned int _maxVBOPoolSize; 255 unsigned int _maxFBOPoolSize; 243 256 }; 244 257
