1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026479: Visualization, TKOpenGl - do not implicitly turn off stereo in OpenGl_Workspace::RedrawImmediate()

This commit is contained in:
kgv 2015-07-24 14:05:35 +03:00 committed by bugmaster
parent f42753ed03
commit 637b758367

View File

@ -1408,13 +1408,8 @@ void OpenGl_Workspace::RedrawImmediate (const Graphic3d_CView& theCView,
const Graphic3d_StereoMode aStereoMode = theCView.RenderParams.StereoMode;
if (aProjectType == Graphic3d_Camera::Projection_Stereo)
{
if (aFrameBuffer != NULL)
{
// implicitly switch to mono camera for image dump
aProjectType = Graphic3d_Camera::Projection_Perspective;
}
else if (myMainSceneFbos[0]->IsValid()
&& !myMainSceneFbos[1]->IsValid())
if (myMainSceneFbos[0]->IsValid()
&& !myMainSceneFbos[1]->IsValid())
{
aProjectType = Graphic3d_Camera::Projection_Perspective;
}