Changeset 7848 for OpenSceneGraph/trunk/examples/osglogo/osglogo.cpp
- Timestamp:
- 01/28/08 21:52:31 (5 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/examples/osglogo/osglogo.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osglogo/osglogo.cpp
r7648 r7848 26 26 #include <osg/BlendFunc> 27 27 #include <osg/ClearNode> 28 #include <osg/Version> 28 29 29 30 #include <osgUtil/Tessellator> … … 479 480 std::string subscript = ""; 480 481 482 bool showVersion = false; 483 while (arguments.read("--version")) { showVersion = true; } 484 if( showVersion ) 485 { 486 label += " "; 487 label += osgGetVersion(); 488 } 489 481 490 while (arguments.read("--label", label)) {} 482 491 while (arguments.read("--subscript", subscript)) {}
