- Timestamp:
- 03/10/10 13:13:31 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgunittests/osgunittests.cpp
r10324 r11186 33 33 34 34 #include <iostream> 35 36 extern void runFileNameUtilsTest(osg::ArgumentParser& arguments); 35 37 36 38 void testFrustum(double left,double right,double bottom,double top,double zNear,double zFar) … … 586 588 587 589 bool printSizeOfTest = false; 588 while (arguments.read("sizeof")) printSizeOfTest = true; 590 while (arguments.read("sizeof")) printSizeOfTest = true; 591 592 bool printFileNameUtilsTests = false; 593 while (arguments.read("filenames")) printFileNameUtilsTests = true; 589 594 590 595 bool printQuatTest = false; … … 698 703 } 699 704 705 if (printFileNameUtilsTests) 706 { 707 runFileNameUtilsTest(arguments); 708 } 709 710 700 711 if (doTestThreadInitAndExit) 701 712 {
