- Timestamp:
- 11/17/05 21:22:55 (8 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/examples/osgtexture3D/osgtexture3D.cpp
r1844 r4805 36 36 37 37 if (!image_0 || !image_1 || !image_2 || !image_3) 38 {39 std::cout << "Warning: could not open files."<<std::endl;38 { 39 std::cout << "Warning: could not open files."<<std::endl; 40 40 return new osg::StateSet; 41 41 } … … 43 43 if (image_0->getPixelFormat()!=image_1->getPixelFormat() || image_0->getPixelFormat()!=image_2->getPixelFormat() || image_0->getPixelFormat()!=image_3->getPixelFormat()) 44 44 { 45 std::cout << "Warning: image pixel formats not compatible."<<std::endl;45 std::cout << "Warning: image pixel formats not compatible."<<std::endl; 46 46 return new osg::StateSet; 47 47 }
