Changeset 10227
- Timestamp:
- 05/18/09 12:28:14 (4 years ago)
- Location:
- OpenSceneGraph/trunk/include
- Files:
-
- 3 modified
-
osg/Version (modified) (1 diff)
-
osgDB/Options (modified) (1 diff)
-
osgDB/Registry (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/Version
r10173 r10227 25 25 #define OPENSCENEGRAPH_SOVERSION 60 26 26 27 /* *convinience macro that can be used to decide whether a feature is present or not i.e.28 * #if OSG_MIN_VERSION_REQUIRED(2,9,5)29 * your code here30 * #endif31 */27 /* convinience macro that can be used to decide whether a feature is present or not i.e. 28 * #if OSG_MIN_VERSION_REQUIRED(2,9,5) 29 * your code here 30 * #endif 31 */ 32 32 #define OSG_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION>MAJOR) || (OPENSCENEGRAPH_MAJOR_VERSION==MAJOR && (OPENSCENEGRAPH_MINOR_VERSION>MINOR || (OPENSCENEGRAPH_MINOR_VERSION==MINOR && OPENSCENEGRAPH_PATCH_VERSION>=PATCH)))) 33 33 #define OSG_VERSION_LESS_THAN(MAJOR, MINOR, PATCH) ((OPENSCENEGRAPH_MAJOR_VERSION<MAJOR) || (OPENSCENEGRAPH_MAJOR_VERSION==MAJOR && (OPENSCENEGRAPH_MINOR_VERSION<MINOR || (OPENSCENEGRAPH_MINOR_VERSION==MINOR && OPENSCENEGRAPH_PATCH_VERSION<PATCH)))) -
OpenSceneGraph/trunk/include/osgDB/Options
r10198 r10227 178 178 179 179 180 /** Set the callback to use inform the DatabasePager whether a file is located on local or remote file system. .*/180 /** Set the callback to use inform the DatabasePager whether a file is located on local or remote file system.*/ 181 181 void setFileLocationCallback( FileLocationCallback* cb) { _fileLocationCallback = cb; } 182 182 183 /** Get the callback to use inform the DatabasePager whether a file is located on local or remote file system. .*/183 /** Get the callback to use inform the DatabasePager whether a file is located on local or remote file system.*/ 184 184 FileLocationCallback* getFileLocationCallback() const { return _fileLocationCallback.get(); } 185 185 -
OpenSceneGraph/trunk/include/osgDB/Registry
r10174 r10227 328 328 } 329 329 330 /** Set the callback to use inform the DatabasePager whether a file is located on local or remote file system. .*/330 /** Set the callback to use inform the DatabasePager whether a file is located on local or remote file system.*/ 331 331 void setFileLocationCallback( FileLocationCallback* cb) { _fileLocationCallback = cb; } 332 332 333 /** Get the callback to use inform the DatabasePager whether a file is located on local or remote file system. .*/333 /** Get the callback to use inform the DatabasePager whether a file is located on local or remote file system.*/ 334 334 FileLocationCallback* getFileLocationCallback() const { return _fileLocationCallback.get(); } 335 335
