Changeset 10040 for OpenSceneGraph/trunk/src/osgPlugins/ply/typedefs.h
- Timestamp:
- 04/13/09 11:35:52 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgPlugins/ply/typedefs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ply/typedefs.h
r10012 r10040 20 20 # include <osg/Notify> 21 21 # include <cassert> 22 # define MESHASSERT assert 22 23 #ifdef NDEBUG 24 # define MESHASSERT( x ) 25 #else 26 # define MESHASSERT(x) { if( !(x) ) \ 27 osg::notify(osg::WARN) << "Ply Loader ##### Assert: " << #x << " #####" << std::endl; } 28 #endif 29 23 30 # define MESHERROR osg::notify(osg::WARN) 24 31 # define MESHWARN osg::notify(osg::WARN)
