From eae454e3307922b27993f2246c3e16ef6bbee8f5 Mon Sep 17 00:00:00 2001 From: isz Date: Wed, 3 Jun 2015 09:58:10 +0300 Subject: [PATCH] 0026149: Visualization - depth buffer should not be written within Z-layers without Graphic3d_ZLayerDepthWrite flag OpenGl_Workspace::updateMaterial() - do not activate writing into Depth buffer without Graphic3d_ZLayerDepthWrite flag. Add method OpenGl_Workspace::UseDepthWrite() to track glDepthMask() state. Drop the following outdated API methods conflicting with Z-layers API: - V3d_View::EnableDepthTest(), V3d_View::IsDepthTestEnabled() - Visual3d_View::ZBufferIsActivated(), Visual3d_View::SetZBufferActivity(), Visual3d_View::EnableDepthTest(), Visual3d_View::IsDepthTestEnabled() - Graphic3d_GraphicDriver::SetDepthTestEnabled(), Graphic3d_GraphicDriver::IsDepthTestEnabled() Activate Z-buffer by default, and manage it state only by Z-layer flags. --- src/Graphic3d/Graphic3d_CView.hxx | 2 - src/Graphic3d/Graphic3d_GraphicDriver.cdl | 9 --- src/OpenGl/OpenGl_GraphicDriver.hxx | 2 - src/OpenGl/OpenGl_GraphicDriver_7.cxx | 1 - src/OpenGl/OpenGl_GraphicDriver_713.cxx | 15 ---- src/OpenGl/OpenGl_Layer.cxx | 7 +- src/OpenGl/OpenGl_Text.cxx | 10 +-- src/OpenGl/OpenGl_View_2.cxx | 9 ++- src/OpenGl/OpenGl_Workspace.cxx | 74 ++++++------------ src/OpenGl/OpenGl_Workspace.hxx | 17 ++++- src/OpenGl/OpenGl_Workspace_5.cxx | 10 ++- src/V3d/V3d_View.cdl | 12 --- src/V3d/V3d_View_5.cxx | 10 --- src/Visual3d/Visual3d_View.cdl | 33 -------- src/Visual3d/Visual3d_View.cxx | 91 ----------------------- src/Visual3d/Visual3d_ViewManager.cxx | 18 ----- tests/bugs/vis/bug26149 | 41 ++++++++++ 17 files changed, 100 insertions(+), 261 deletions(-) create mode 100644 tests/bugs/vis/bug26149 diff --git a/src/Graphic3d/Graphic3d_CView.hxx b/src/Graphic3d/Graphic3d_CView.hxx index f329e76a7d..7b2201f68a 100644 --- a/src/Graphic3d/Graphic3d_CView.hxx +++ b/src/Graphic3d/Graphic3d_CView.hxx @@ -37,7 +37,6 @@ public: ZClipBackPlane (0.0f), DepthFrontPlane (0.0f), DepthBackPlane (0.0f), - ZBufferActivity (0), Model (0), Visualization (0), NbActiveLight (0), @@ -63,7 +62,6 @@ public: float DepthFrontPlane; float DepthBackPlane; - int ZBufferActivity; int Model; int Visualization; diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.cdl b/src/Graphic3d/Graphic3d_GraphicDriver.cdl index 8645c08e21..0bc4b8e845 100644 --- a/src/Graphic3d/Graphic3d_GraphicDriver.cdl +++ b/src/Graphic3d/Graphic3d_GraphicDriver.cdl @@ -513,15 +513,6 @@ is is deferred; ---Purpose: call_togl_backfacing - SetDepthTestEnabled( me; view : CView from Graphic3d; - isEnabled : Boolean from Standard ) - is deferred; - ---Purpose: call_togl_depthtest - - IsDepthTestEnabled( me; view : CView from Graphic3d ) - returns Boolean from Standard is deferred; - ---Purpose: call_togl_isdepthtest - ReadDepths( me; view : CView from Graphic3d; x, y : Integer; diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/OpenGl/OpenGl_GraphicDriver.hxx index 73b966191d..29ba151747 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.hxx +++ b/src/OpenGl/OpenGl_GraphicDriver.hxx @@ -249,8 +249,6 @@ public: const Standard_CString theFileName, const Aspect_PrintAlgo thePrintAlgorithm = Aspect_PA_STRETCH, const Standard_Real theScaleFactor = 1.0) const; - Standard_EXPORT void SetDepthTestEnabled (const Graphic3d_CView& view,const Standard_Boolean isEnabled) const; - Standard_EXPORT Standard_Boolean IsDepthTestEnabled (const Graphic3d_CView& view) const; //! Reads depths of shown pixels of the given rectangle (glReadPixels with GL_DEPTH_COMPONENT) Standard_EXPORT void ReadDepths (const Graphic3d_CView& view,const Standard_Integer x,const Standard_Integer y,const Standard_Integer width,const Standard_Integer height,const Standard_Address buffer) const; diff --git a/src/OpenGl/OpenGl_GraphicDriver_7.cxx b/src/OpenGl/OpenGl_GraphicDriver_7.cxx index 232eaad4ba..7c7ea076aa 100644 --- a/src/OpenGl/OpenGl_GraphicDriver_7.cxx +++ b/src/OpenGl/OpenGl_GraphicDriver_7.cxx @@ -481,7 +481,6 @@ void OpenGl_GraphicDriver::SetVisualisation (const Graphic3d_CView& ACView) if (aCView) { aCView->View->SetVisualisation(ACView.Context); - aCView->WS->UseZBuffer() = ( ACView.Context.Visualization == 0? (ACView.Context.ZBufferActivity == 1) : (ACView.Context.ZBufferActivity != 0) ); } } diff --git a/src/OpenGl/OpenGl_GraphicDriver_713.cxx b/src/OpenGl/OpenGl_GraphicDriver_713.cxx index b3125a08d0..c9d86da885 100644 --- a/src/OpenGl/OpenGl_GraphicDriver_713.cxx +++ b/src/OpenGl/OpenGl_GraphicDriver_713.cxx @@ -20,21 +20,6 @@ #include -void OpenGl_GraphicDriver::SetDepthTestEnabled( const Graphic3d_CView& ACView, const Standard_Boolean isEnabled ) const -{ - const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView; - if (aCView) - aCView->WS->UseDepthTest() = isEnabled; -} - -Standard_Boolean OpenGl_GraphicDriver::IsDepthTestEnabled( const Graphic3d_CView& ACView ) const -{ - const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView; - if (aCView) - return aCView->WS->UseDepthTest(); - return Standard_False; -} - void OpenGl_GraphicDriver::ReadDepths( const Graphic3d_CView& ACView, const Standard_Integer x, const Standard_Integer y, diff --git a/src/OpenGl/OpenGl_Layer.cxx b/src/OpenGl/OpenGl_Layer.cxx index 6b59d55de6..0859e12b45 100644 --- a/src/OpenGl/OpenGl_Layer.cxx +++ b/src/OpenGl/OpenGl_Layer.cxx @@ -294,7 +294,7 @@ void OpenGl_Layer::Render (const Handle(OpenGl_Workspace)& theWorkspace, { glClear (GL_DEPTH_BUFFER_BIT); } - + // handle depth test if (IsSettingEnabled (Graphic3d_ZLayerDepthTest)) { @@ -305,7 +305,7 @@ void OpenGl_Layer::Render (const Handle(OpenGl_Workspace)& theWorkspace, { glDepthFunc (GL_ALWAYS); } - + // handle depth offset if (IsSettingEnabled (Graphic3d_ZLayerDepthOffset)) { @@ -321,7 +321,8 @@ void OpenGl_Layer::Render (const Handle(OpenGl_Workspace)& theWorkspace, } // handle depth write - glDepthMask (IsSettingEnabled (Graphic3d_ZLayerDepthWrite) ? GL_TRUE : GL_FALSE); + theWorkspace->UseDepthWrite() = IsSettingEnabled (Graphic3d_ZLayerDepthWrite); + glDepthMask (theWorkspace->UseDepthWrite() ? GL_TRUE : GL_FALSE); // render priority list theWorkspace->IsCullingEnabled() ? renderTraverse (theWorkspace) : renderAll (theWorkspace); diff --git a/src/OpenGl/OpenGl_Text.cxx b/src/OpenGl/OpenGl_Text.cxx index a67ea82ed6..dcb68db7e5 100644 --- a/src/OpenGl/OpenGl_Text.cxx +++ b/src/OpenGl/OpenGl_Text.cxx @@ -414,7 +414,7 @@ void OpenGl_Text::Render (const Handle(OpenGl_Workspace)& theWorkspace) const } // restore Z buffer settings - if (theWorkspace->UseZBuffer() && theWorkspace->UseDepthTest()) + if (theWorkspace->UseZBuffer()) { glEnable (GL_DEPTH_TEST); } @@ -732,12 +732,8 @@ void OpenGl_Text::render (const Handle(OpenGl_PrinterContext)& thePrintCtx, #endif // setup depth test - if (!myIs2d - && theTextAspect.StyleType() != Aspect_TOST_ANNOTATION) - { - glEnable (GL_DEPTH_TEST); - } - else + if (myIs2d + || theTextAspect.StyleType() == Aspect_TOST_ANNOTATION) { glDisable (GL_DEPTH_TEST); } diff --git a/src/OpenGl/OpenGl_View_2.cxx b/src/OpenGl/OpenGl_View_2.cxx index fe40d8d914..8f13fb6317 100644 --- a/src/OpenGl/OpenGl_View_2.cxx +++ b/src/OpenGl/OpenGl_View_2.cxx @@ -166,7 +166,11 @@ void OpenGl_View::DrawBackground (const Handle(OpenGl_Workspace)& theWorkspace) return; } - aCtx->core11fwd->glDisable (GL_DEPTH_TEST); + const Standard_Boolean wasUsedZBuffer = theWorkspace->SetUseZBuffer (Standard_False); + if (wasUsedZBuffer) + { + aCtx->core11fwd->glDisable (GL_DEPTH_TEST); + } aCtx->WorldViewState.Push(); aCtx->ProjectionState.Push(); @@ -234,8 +238,9 @@ void OpenGl_View::DrawBackground (const Handle(OpenGl_Workspace)& theWorkspace) aCtx->ApplyProjectionMatrix(); aCtx->ApplyWorldViewMatrix(); - if (theWorkspace->UseZBuffer()) + if (wasUsedZBuffer) { + theWorkspace->SetUseZBuffer (Standard_True); aCtx->core11fwd->glEnable (GL_DEPTH_TEST); } } diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/OpenGl/OpenGl_Workspace.cxx index 59264e6b6a..210f74ada7 100644 --- a/src/OpenGl/OpenGl_Workspace.cxx +++ b/src/OpenGl/OpenGl_Workspace.cxx @@ -153,8 +153,8 @@ OpenGl_Workspace::OpenGl_Workspace (const Handle(OpenGl_GraphicDriver)& theDrive myTransientDrawToFront (Standard_True), myBackBufferRestored (Standard_False), myIsImmediateDrawn (Standard_False), - myUseZBuffer (Standard_False), - myUseDepthTest (Standard_True), + myUseZBuffer (Standard_True), + myUseDepthWrite (Standard_True), myUseGLLight (Standard_True), myIsCullingEnabled (Standard_False), myFrameCounter (0), @@ -1095,37 +1095,23 @@ void OpenGl_Workspace::redraw1 (const Graphic3d_CView& theCView, // request reset of material NamedStatus |= OPENGL_NS_RESMAT; - GLbitfield toClear = GL_COLOR_BUFFER_BIT; - if (myUseZBuffer) - { - glDepthFunc (GL_LEQUAL); - glDepthMask (GL_TRUE); - if (myUseDepthTest) - { - glEnable (GL_DEPTH_TEST); - } - else - { - glDisable (GL_DEPTH_TEST); - } + myUseZBuffer = Standard_True; + myUseDepthWrite = Standard_True; + GLbitfield toClear = GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT; + glDepthFunc (GL_LEQUAL); + glDepthMask (GL_TRUE); + glEnable (GL_DEPTH_TEST); - #if !defined(GL_ES_VERSION_2_0) - glClearDepth (1.0); - #else - glClearDepthf (1.0f); - #endif - toClear |= GL_DEPTH_BUFFER_BIT; - } - else - { - glDisable (GL_DEPTH_TEST); - } +#if !defined(GL_ES_VERSION_2_0) + glClearDepth (1.0); +#else + glClearDepthf (1.0f); +#endif if (NamedStatus & OPENGL_NS_WHITEBACK) { // set background to white glClearColor (1.0f, 1.0f, 1.0f, 1.0f); - toClear |= GL_DEPTH_BUFFER_BIT; } else { @@ -1399,34 +1385,22 @@ bool OpenGl_Workspace::redrawImmediate (const Graphic3d_CView& theCView, Handle(OpenGl_Workspace) aWS (this); - if (myUseZBuffer) - { - glDepthFunc (GL_LEQUAL); - glDepthMask (GL_TRUE); - if (myUseDepthTest) - { - glEnable (GL_DEPTH_TEST); - } - else - { - glDisable (GL_DEPTH_TEST); - } - - #if !defined(GL_ES_VERSION_2_0) - glClearDepth (1.0); - #else - glClearDepthf (1.0f); - #endif - } - else - { - glDisable (GL_DEPTH_TEST); - } + myUseZBuffer = Standard_True; + myUseDepthWrite = Standard_True; + glDepthFunc (GL_LEQUAL); + glDepthMask (GL_TRUE); + glEnable (GL_DEPTH_TEST); +#if !defined(GL_ES_VERSION_2_0) + glClearDepth (1.0); +#else + glClearDepthf (1.0f); +#endif myView->Render (myPrintContext, aWS, theDrawFbo, theProjection, theCView, theCUnderLayer, theCOverLayer, Standard_True); if (!myView->ImmediateStructures().IsEmpty()) { + myUseZBuffer = Standard_False; glDisable (GL_DEPTH_TEST); } for (OpenGl_IndexedMapOfStructure::Iterator anIter (myView->ImmediateStructures()); anIter.More(); anIter.Next()) diff --git a/src/OpenGl/OpenGl_Workspace.hxx b/src/OpenGl/OpenGl_Workspace.hxx index c135788c78..565e5f51ca 100644 --- a/src/OpenGl/OpenGl_Workspace.hxx +++ b/src/OpenGl/OpenGl_Workspace.hxx @@ -197,9 +197,18 @@ public: Image_PixMap& theImage, const Graphic3d_BufferType& theBufferType); - Standard_Boolean& UseZBuffer() { return myUseZBuffer; } - Standard_Boolean& UseDepthTest() { return myUseDepthTest; } - Standard_Boolean& UseGLLight() { return myUseGLLight; } + //! Setup Z-buffer usage flag (without affecting GL state!). + //! Returns previously set flag. + Standard_Boolean SetUseZBuffer (const Standard_Boolean theToUse) + { + const Standard_Boolean wasUsed = myUseZBuffer; + myUseZBuffer = theToUse; + return wasUsed; + } + + Standard_Boolean& UseZBuffer() { return myUseZBuffer; } + Standard_Boolean& UseDepthWrite() { return myUseDepthWrite; } + Standard_Boolean& UseGLLight() { return myUseGLLight; } Standard_Integer AntiAliasingMode() const { return myAntiAliasingMode; } @@ -331,7 +340,7 @@ protected: //! @name protected fields Standard_Boolean myBackBufferRestored; Standard_Boolean myIsImmediateDrawn; //!< flag indicates that immediate mode buffer contains some data Standard_Boolean myUseZBuffer; - Standard_Boolean myUseDepthTest; + Standard_Boolean myUseDepthWrite; Standard_Boolean myUseGLLight; Standard_Boolean myIsCullingEnabled; //!< frustum culling flag diff --git a/src/OpenGl/OpenGl_Workspace_5.cxx b/src/OpenGl/OpenGl_Workspace_5.cxx index 479fde457c..f7f827f477 100644 --- a/src/OpenGl/OpenGl_Workspace_5.cxx +++ b/src/OpenGl/OpenGl_Workspace_5.cxx @@ -125,7 +125,10 @@ void OpenGl_Workspace::updateMaterial (const int theFlag) myMatTmp.Diffuse.a() = aProps->trans; glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_BLEND); - glDepthMask (GL_FALSE); + if (myUseDepthWrite) + { + glDepthMask (GL_FALSE); + } } else { @@ -135,7 +138,10 @@ void OpenGl_Workspace::updateMaterial (const int theFlag) glBlendFunc (GL_ONE, GL_ZERO); glDisable (GL_BLEND); } - glDepthMask (GL_TRUE); + if (myUseDepthWrite) + { + glDepthMask (GL_TRUE); + } } } diff --git a/src/V3d/V3d_View.cdl b/src/V3d/V3d_View.cdl index 2aba4de34e..3b94bc621f 100644 --- a/src/V3d/V3d_View.cdl +++ b/src/V3d/V3d_View.cdl @@ -33,8 +33,6 @@ -- -> Add method Dump() -- THA - 17/08/00 Thomas HARTL -- -> Add Print method (works only under Windows). --- SAV - 22/10/01 --- -> Add EnableDepthTest() & IsDepthTestEnabled(). -- VSV - 28/05/02: ZBUFFER mode of Trihedron -- SAV - 23/12/02 -> Added methods to set background image -- NKV - 23/07/07 -> Define custom projection and model view matrixes @@ -1371,16 +1369,6 @@ is ---Level : Public ---Purpose : Returns current state of the back faces display - EnableDepthTest( me; enable : Boolean from Standard = Standard_True ) - is static; - ---Level: Public - ---Purpose: turns on/off opengl depth testing - - IsDepthTestEnabled( me ) returns Boolean from Standard - is static; - ---Level: Public - ---Purpose: returns the current state of the depth testing - EnableGLLight( me; enable : Boolean from Standard = Standard_True ) is static; ---Level: Public diff --git a/src/V3d/V3d_View_5.cxx b/src/V3d/V3d_View_5.cxx index 8433b067a2..7377d29589 100644 --- a/src/V3d/V3d_View_5.cxx +++ b/src/V3d/V3d_View_5.cxx @@ -33,16 +33,6 @@ //BUC61045 25/10/01 SAV ; added functionality to control gl lighting from higher API -void V3d_View::EnableDepthTest( const Standard_Boolean enable ) const -{ - MyView->EnableDepthTest( enable ); -} - -Standard_Boolean V3d_View::IsDepthTestEnabled() const -{ - return MyView->IsDepthTestEnabled(); -} - void V3d_View::EnableGLLight( const Standard_Boolean enable ) const { MyView->EnableGLLight( enable ); diff --git a/src/Visual3d/Visual3d_View.cdl b/src/Visual3d/Visual3d_View.cdl index 82594e2063..0941ec22ee 100644 --- a/src/Visual3d/Visual3d_View.cdl +++ b/src/Visual3d/Visual3d_View.cdl @@ -30,7 +30,6 @@ -- of a Set. Improves performance of Selection -- mechanisms --- SAV - 22/10/01 -> Add EnableDepthTest() & IsDepthTestEnabled() methods. -- SAV - 25/10/01 -> Add EnableGLLight() & IsGLLightEnabled() methods. -- VSV - 28/05/02: ZBUFFER mode of Trihedron -- SAV - 23/12/02 Added methods too set background image @@ -969,28 +968,6 @@ is -- or insufficient memory. -- Warning: Works only under Windows. - ZBufferIsActivated ( me ) - returns Boolean from Standard - is static; - ---Level: Advanced - ---Purpose: Returns Standard_True if the ZBuffer is activated - -- in the view and Standard_False if not. - ---Category: Internal methods - - SetZBufferActivity ( me : mutable; AnActivity : Integer from Standard ) - is static; - ---Level: Advanced - ---Purpose: Activates the ZBuffer if the integer - -- is equal to 1. - -- Deactivates the ZBuffer if the integer - -- is equal to 0. - -- If the integer is equal to -1 then - -- - the ZBuffer is activated if - -- me->Context ().Visualization () == Visual3d_TOV_SHADING - -- - the ZBuffer is deactivated if - -- me->Context ().Visualization () == Visual3d_TOV_WIREFRAME - ---Category: Internal methods - UnderLayer ( me ) returns Layer from Visual3d; ---Level: Internal @@ -1005,16 +982,6 @@ is ---Category: Private methods ---C++: return const & - EnableDepthTest( me; enable : Boolean from Standard ) - is static; - ---Level: Public - ---Purpose: turns on/off opengl depth - - IsDepthTestEnabled( me ) returns Boolean from Standard - is static; - ---Level: Public - ---Purpose: returns current state of the opengl depth testing - ReadDepths( me; x,y,width,height: Integer from Standard; buffer : Address ) is static; diff --git a/src/Visual3d/Visual3d_View.cxx b/src/Visual3d/Visual3d_View.cxx index 164096e86d..6ae88c773f 100644 --- a/src/Visual3d/Visual3d_View.cxx +++ b/src/Visual3d/Visual3d_View.cxx @@ -61,7 +61,6 @@ Visual3d_View::Visual3d_View (const Handle(Visual3d_ViewManager)& theMgr) MyCView.WsId = -1; MyCView.DefWindow.IsDefined = 0; MyCView.Context.NbActiveLight = 0; - MyCView.Context.ZBufferActivity = -1; MyCView.Backfacing = 0; MyCView.ptrUnderLayer = 0; @@ -835,22 +834,6 @@ void Visual3d_View::Activate() } } - // If the activation/desactivation of ZBuffer should be automatic - // depending on the presence or absence of facets. - if (myViewManager->ZBufferAuto()) - { - const Standard_Boolean containsFacet = ContainsFacet(); - const Standard_Boolean hasZBuffer = ZBufferIsActivated(); - if (containsFacet && !hasZBuffer) - { - SetZBufferActivity (1); // If the view contains facets and if ZBuffer is not active - } - else if (!containsFacet && hasZBuffer) - { - SetZBufferActivity (0); // If the view does not contain facets and if ZBuffer is active - } - } - Update (myViewManager->UpdateMode()); } @@ -977,23 +960,6 @@ void Visual3d_View::Redraw (const Handle(Visual3d_Layer)& theUnderLayer, myGraphicDriver->ResetDeviceLostFlag(); } - // set up Z buffer state before redrawing - if (myViewManager->ZBufferAuto()) - { - const Standard_Boolean hasFacet = ContainsFacet(); - const Standard_Boolean hasZBuffer = ZBufferIsActivated(); - // if the view contains facets and if ZBuffer is not active - if (hasFacet && !hasZBuffer) - { - SetZBufferActivity (1); - } - // if the view contains only facets and if ZBuffer is active - if (!hasFacet && hasZBuffer) - { - SetZBufferActivity (0); - } - } - if (myStructuresUpdated) { AutoZFit(); @@ -1812,45 +1778,6 @@ Standard_Integer Visual3d_View::Identification() const return MyCView.ViewId; } -// ======================================================================= -// function : ZBufferIsActivated -// purpose : -// ======================================================================= -Standard_Boolean Visual3d_View::ZBufferIsActivated() const -{ - if (IsDeleted() - || !IsDefined() - || !IsActive()) - { - return Standard_False; - } - - if (MyCView.Context.ZBufferActivity == -1) - { - // not forced by the programmer => depends on the type of visualisation - return MyContext.Visualization () == Visual3d_TOV_SHADING; - } - return MyCView.Context.ZBufferActivity != 0; // 0 or 1 => forced by the programmer -} - -// ======================================================================= -// function : SetZBufferActivity -// purpose : -// ======================================================================= -void Visual3d_View::SetZBufferActivity (const Standard_Integer theActivity) -{ - if (IsDeleted() - || MyCView.Context.ZBufferActivity == theActivity - || !IsDefined() - || !IsActive()) - { - return; - } - - MyCView.Context.ZBufferActivity = theActivity; - myGraphicDriver->SetVisualisation (MyCView); -} - // ======================================================================= // function : UpdateView // purpose : @@ -2340,24 +2267,6 @@ Visual3d_TypeOfBackfacingModel Visual3d_View::BackFacingModel() const return Visual3d_TOBM_DISABLE; } -// ======================================================================= -// function : EnableDepthTest -// purpose : -// ======================================================================= -void Visual3d_View::EnableDepthTest (const Standard_Boolean theToEnable) const -{ - myGraphicDriver->SetDepthTestEnabled (MyCView, theToEnable); -} - -// ======================================================================= -// function : IsDepthTestEnabled -// purpose : -// ======================================================================= -Standard_Boolean Visual3d_View::IsDepthTestEnabled() const -{ - return myGraphicDriver->IsDepthTestEnabled (MyCView); -} - // ======================================================================= // function : ReadDepths // purpose : diff --git a/src/Visual3d/Visual3d_ViewManager.cxx b/src/Visual3d/Visual3d_ViewManager.cxx index f1e4fe5c87..556385fb98 100644 --- a/src/Visual3d/Visual3d_ViewManager.cxx +++ b/src/Visual3d/Visual3d_ViewManager.cxx @@ -571,24 +571,6 @@ void Visual3d_ViewManager::UnIdentification (const Standard_Integer aViewId) void Visual3d_ViewManager::SetZBufferAuto (const Standard_Boolean AFlag) { - if (MyZBufferAuto && AFlag) return; - if (! MyZBufferAuto && ! AFlag) return; - - // if pass from False to True : - // no problem, at the next view update, it - // will properly ask questions to answer (SetVisualisation) - // if pass from True to False : - // it is necessary to modify ZBufferActivity at each view so that - // zbuffer could be active only if required by context. - // In this case -1 is passed so that the view ask itself the question - // Note : 0 forces the desactivation, 1 forces the activation - if (! AFlag) - { - for(int i=1; i<=MyDefinedView.Length(); i++) - { - (MyDefinedView.Value(i))->SetZBufferActivity(-1); - } - } MyZBufferAuto = AFlag; } diff --git a/tests/bugs/vis/bug26149 b/tests/bugs/vis/bug26149 new file mode 100644 index 0000000000..55c8381408 --- /dev/null +++ b/tests/bugs/vis/bug26149 @@ -0,0 +1,41 @@ +puts "===========" +puts "0026149: Visualization - depth buffer should not be written within Z-layers without Graphic3d_ZLayerDepthWrite flag" +puts "Check that objects drawn in Graphic3d_ZLayerId_BotOSD layer do not overlap objects in Graphic3d_ZLayerId_Default layer." +puts "===========" + +pload MODELING VISUALIZATION +vinit View1 +vclear +vaxo + +text2brep tcc "Center" Times-Roman 30 +vdisplay tcc -2d -underlay +polyline lcc -50 -50 0 -50 50 0 50 50 0 50 0 0 0 -50 0 -50 -50 0 +vdisplay lcc -2d -underlay + +text2brep tbl "Bottom-Left" Times-Roman 30 +vdisplay tbl -2d -trsfPersPos -1 -1 5 -underlay +polyline lbl 0 0 0 0 100 0 100 100 0 100 50 0 50 0 0 0 0 0 +vdisplay lbl -2d -trsfPersPos -1 -1 3 -underlay + +text2brep ttl "Top-Left" Times-Roman 30 x=-27 y=0 +vdisplay ttl -2d -trsfPersPos -1 1 30 -underlay +polyline ltl 0 -100 0 0 0 0 100 0 0 100 -50 0 50 -100 0 0 -100 0 +vdisplay ltl -2d -trsfPersPos -1 1 3 -underlay + +text2brep ttr "Top-Right" Times-Roman 30 x=-100 y=0 +vdisplay ttr -2d -trsfPersPos 1 1 30 -underlay +polyline ltr -100 -100 0 -100 0 0 0 0 0 0 -50 0 -50 -100 0 -100 -100 0 +vdisplay ltr -2d -trsfPersPos 1 1 3 -underlay + +text2brep tbr "Bottom-Right" Times-Roman 30 x=-165 y=0 +vdisplay tbr -2d -trsfPersPos 1 -1 5 -underlay +polyline lbr -100 0 0 -100 100 0 0 100 0 0 50 0 -50 0 0 -100 0 0 +vdisplay lbr -2d -trsfPersPos 1 -1 3 -underlay + +box b 1 2 3 +vdisplay b +vfit +vsetdispmode b 1 + +vdump ${imagedir}/${casename}.png