removed some of the hard coded options in the main funct.

This commit is contained in:
d-a-heitbrink 2017-03-01 18:12:46 -06:00
parent 7b3fc0925c
commit cfaf72bc56

View File

@ -577,7 +577,7 @@ osg::Group* CreateScene(){
}
int main(int argc, char** argv)
{
// construct the viewer
// set command line options
osg::ArgumentParser arguments(&argc,argv);
// construct the viewer.
@ -588,12 +588,9 @@ int main(int argc, char** argv)
// add model to viewer.
viewer.setSceneData( CreateScene() );
viewer.setUpViewOnSingleScreen(2);
viewer.getCamera()->getGraphicsContext()->getState()->setUseModelViewAndProjectionUniforms(true);
double fovy;double aspectRatio;
double zNear;double zFar;
return viewer.run();
}