From 42f8ba5632b93577af9bac1f538240f09a3e0f69 Mon Sep 17 00:00:00 2001 From: isk Date: Tue, 7 Apr 2015 11:14:57 +0300 Subject: [PATCH] 0025893: Visualization, TKOpenGl - do not use uninitialized memory to track Clipping Planes state --- src/OpenGl/OpenGl_View_2.cxx | 50 ++++-------------------------------- 1 file changed, 5 insertions(+), 45 deletions(-) diff --git a/src/OpenGl/OpenGl_View_2.cxx b/src/OpenGl/OpenGl_View_2.cxx index 24b374a7a8..4d258adfd5 100644 --- a/src/OpenGl/OpenGl_View_2.cxx +++ b/src/OpenGl/OpenGl_View_2.cxx @@ -54,15 +54,6 @@ namespace extern void InitLayerProp (const int theListId); //szvgl: defined in OpenGl_GraphicDriver_Layer.cxx -/*----------------------------------------------------------------------*/ - -struct OPENGL_CLIP_PLANE -{ - GLboolean isEnabled; - GLdouble Equation[4]; - DEFINE_STANDARD_ALLOC -}; - /*----------------------------------------------------------------------*/ /* * Fonctions privees @@ -265,24 +256,13 @@ void OpenGl_View::Render (const Handle(OpenGl_PrinterContext)& thePrintContext, const Handle(OpenGl_Context)& aContext = theWorkspace->GetGlContext(); #if !defined(GL_ES_VERSION_2_0) - // store and disable current clipping planes - const Standard_Integer aMaxPlanes = aContext->MaxClipPlanes(); - NCollection_Array1 aOldPlanes (GL_CLIP_PLANE0, GL_CLIP_PLANE0 + aMaxPlanes - 1); + // Disable current clipping planes if (aContext->core11 != NULL) { - for (Standard_Integer aClipPlaneId = aOldPlanes.Lower(); aClipPlaneId <= aOldPlanes.Upper(); ++aClipPlaneId) + const Standard_Integer aMaxPlanes = aContext->MaxClipPlanes(); + for (Standard_Integer aClipPlaneId = GL_CLIP_PLANE0; aClipPlaneId < GL_CLIP_PLANE0 + aMaxPlanes; ++aClipPlaneId) { - OPENGL_CLIP_PLANE& aPlane = aOldPlanes.ChangeValue (aClipPlaneId); - aContext->core11->glGetClipPlane (aClipPlaneId, aPlane.Equation); - if (aPlane.isEnabled) - { - aContext->core11fwd->glDisable (aClipPlaneId); - aPlane.isEnabled = GL_TRUE; - } - else - { - aPlane.isEnabled = GL_FALSE; - } + aContext->core11fwd->glDisable (aClipPlaneId); } } #endif @@ -543,28 +523,8 @@ void OpenGl_View::Render (const Handle(OpenGl_PrinterContext)& thePrintContext, theWorkspace->DisplayCallback (theCView, aMode); } - // =============================== - // Step 7: Finalize - // =============================== - -#if !defined(GL_ES_VERSION_2_0) - // restore clipping planes - if (aContext->core11 != NULL) - { - for (Standard_Integer aClipPlaneId = aOldPlanes.Lower(); aClipPlaneId <= aOldPlanes.Upper(); ++aClipPlaneId) - { - const OPENGL_CLIP_PLANE& aPlane = aOldPlanes.ChangeValue (aClipPlaneId); - aContext->core11->glClipPlane (aClipPlaneId, aPlane.Equation); - if (aPlane.isEnabled) - aContext->core11fwd->glEnable (aClipPlaneId); - else - aContext->core11fwd->glDisable (aClipPlaneId); - } - } -#endif - // ============================================================== - // Step 8: Keep shader manager informed about last View + // Step 7: Keep shader manager informed about last View // ============================================================== if (!aManager.IsNull())