| 101 | | osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init()"<<std::endl; |
| 102 | | |
| 103 | | if (!_volumeTile) return; |
| | 101 | osg::notify(osg::INFO)<<"FixedFunctionTechnique::init()"<<std::endl; |
| | 102 | |
| | 103 | if (!_volumeTile) |
| | 104 | { |
| | 105 | osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no volume tile assigned."<<std::endl; |
| | 106 | return; |
| | 107 | } |
| | 108 | |
| | 109 | if (_volumeTile->getLayer()==0) |
| | 110 | { |
| | 111 | osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no layer assigend to volume tile."<<std::endl; |
| | 112 | return; |
| | 113 | } |
| | 114 | |
| | 115 | if (_volumeTile->getLayer()->getImage()==0) |
| | 116 | { |
| | 117 | osg::notify(osg::NOTICE)<<"FixedFunctionTechnique::init(), error no image assigned to layer."<<std::endl; |
| | 118 | return; |
| | 119 | } |