From 6926cec1359d49a160786357474d4e9b7389044c Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 16 May 2013 14:51:07 +0000 Subject: [PATCH] Changed the default of OSG_SPLIT_STEREO_AUTO_ADJUST_ASPECT_RATIO to OFF --- src/osg/DisplaySettings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osg/DisplaySettings.cpp b/src/osg/DisplaySettings.cpp index 0a903b9a1..66c501cef 100644 --- a/src/osg/DisplaySettings.cpp +++ b/src/osg/DisplaySettings.cpp @@ -176,7 +176,7 @@ void DisplaySettings::setDefaults() _splitStereoVerticalEyeMapping = LEFT_EYE_TOP_VIEWPORT; _splitStereoVerticalSeparation = 0; - _splitStereoAutoAdjustAspectRatio = true; + _splitStereoAutoAdjustAspectRatio = false; _doubleBuffer = true; _RGB = true; @@ -268,7 +268,7 @@ static ApplicationUsageProxy DisplaySetting_e9(ApplicationUsage::ENVIRONMENTAL_V "LEFT_EYE_TOP_VIEWPORT | LEFT_EYE_BOTTOM_VIEWPORT"); static ApplicationUsageProxy DisplaySetting_e10(ApplicationUsage::ENVIRONMENTAL_VARIABLE, "OSG_SPLIT_STEREO_AUTO_ADJUST_ASPECT_RATIO ", - "OFF | ON Default to ON to compenstate for the compression of the aspect ratio when viewing in split screen stereo. Note, if you are setting fovx and fovy explicityly OFF should be used."); + "OFF | ON Default to OFF to compenstate for the compression of the aspect ratio when viewing in split screen stereo. Note, if you are setting fovx and fovy explicityly OFF should be used."); static ApplicationUsageProxy DisplaySetting_e11(ApplicationUsage::ENVIRONMENTAL_VARIABLE, "OSG_SPLIT_STEREO_VERTICAL_SEPARATION ", "Number of pixels between viewports.");