Improved support for toggle between full screen and non fullscreen in

the osgProducer::Viewer.
This commit is contained in:
Robert Osfield
2003-04-04 11:06:09 +00:00
parent e0d7709d50
commit e9e0b4304d
4 changed files with 19 additions and 6 deletions

View File

@@ -76,9 +76,9 @@ std::string extractCameraConfigFile(osg::ArgumentParser& arguments)
if (arguments.read("-c",filename)) return findCameraConfigFile(filename);
char *ptr;
if( (ptr = getenv( "PRODUCE_CAMERA_CONFIG_FILE" )) )
if( (ptr = getenv( "PRODUCER_CAMERA_CONFIG_FILE" )) )
{
osg::notify(osg::DEBUG_INFO) << "PRODUCE_CAMERA_CONFIG_FILE("<<ptr<<")"<<std::endl;
osg::notify(osg::DEBUG_INFO) << "PRODUCER_CAMERA_CONFIG_FILE("<<ptr<<")"<<std::endl;
return findCameraConfigFile(ptr);
}