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

0025984: Visualization, OpenGl_Workspace::RedrawImmediate() - do not swap buffers within buffersNoSwap option

This commit is contained in:
kgv 2015-03-25 15:54:08 +03:00 committed by bugmaster
parent a3ee6e9f77
commit ef0bfc15cc

View File

@ -986,7 +986,8 @@ void OpenGl_Workspace::RedrawImmediate (const Graphic3d_CView& theCView,
return;
}
if (redrawImmediate (theCView, theCUnderLayer, theCOverLayer, NULL, Standard_True))
if (redrawImmediate (theCView, theCUnderLayer, theCOverLayer, NULL, Standard_True)
&& !myGlContext->caps->buffersNoSwap)
{
myGlContext->SwapBuffers();
}