From Magnus Kessler, typo fixes

This commit is contained in:
Robert Osfield
2011-09-12 10:52:16 +00:00
parent 5162fcc108
commit 9be4a1a1c8
2 changed files with 3 additions and 3 deletions

View File

@@ -515,7 +515,7 @@ void CompositeViewer::realize()
if (_views.empty())
{
OSG_NOTICE<<"CompositeViewer::realize() - not views to realize."<<std::endl;
OSG_NOTICE<<"CompositeViewer::realize() - No views to realize."<<std::endl;
_done = true;
return;
}

View File

@@ -504,7 +504,7 @@ void View::setUpViewAcrossAllScreens()
translate_x += double(width) / (double(height) * aspectRatio);
}
bool stereoSlitScreens = numScreens==2 &&
bool stereoSplitScreens = numScreens==2 &&
ds->getStereoMode()==osg::DisplaySettings::HORIZONTAL_SPLIT &&
ds->getStereo();
@@ -551,7 +551,7 @@ void View::setUpViewAcrossAllScreens()
camera->setDrawBuffer(buffer);
camera->setReadBuffer(buffer);
if (stereoSlitScreens)
if (stereoSplitScreens)
{
unsigned int leftCameraNum = (ds->getSplitStereoHorizontalEyeMapping()==osg::DisplaySettings::LEFT_EYE_LEFT_VIEWPORT) ? 0 : 1;