diff --git a/src/D3DHost/D3DHost_FrameBuffer.cxx b/src/D3DHost/D3DHost_FrameBuffer.cxx index 25e4afb877..35120490a1 100644 --- a/src/D3DHost/D3DHost_FrameBuffer.cxx +++ b/src/D3DHost/D3DHost_FrameBuffer.cxx @@ -245,6 +245,7 @@ Standard_Boolean D3DHost_FrameBuffer::registerD3dBuffer (const Handle(OpenGl_Con return Standard_False; } + myIsOwnColor = true; myColorTextures (0)->Release (theCtx.operator->()); myColorTextures (0)->Create (theCtx); diff --git a/src/D3DHost/D3DHost_View.cxx b/src/D3DHost/D3DHost_View.cxx index cf573e7664..a699f8d45a 100644 --- a/src/D3DHost/D3DHost_View.cxx +++ b/src/D3DHost/D3DHost_View.cxx @@ -87,11 +87,7 @@ D3DHost_View::D3DHost_View (const Handle(Graphic3d_StructureManager)& theMgr, // ======================================================================= D3DHost_View::~D3DHost_View() { - if (!myD3dWglFbo.IsNull()) - { - myD3dWglFbo->Release (myWorkspace->GetGlContext().operator->()); - myD3dWglFbo.Nullify(); - } + ReleaseGlResources (NULL); if (myD3dDevice != NULL) { myD3dDevice->Release(); @@ -104,6 +100,20 @@ D3DHost_View::~D3DHost_View() } } +// ======================================================================= +// function : ReleaseGlResources +// purpose : +// ======================================================================= +void D3DHost_View::ReleaseGlResources (const Handle(OpenGl_Context)& theCtx) +{ + if (!myD3dWglFbo.IsNull()) + { + myD3dWglFbo->Release (theCtx.get()); + myD3dWglFbo.Nullify(); + } + OpenGl_View::ReleaseGlResources (theCtx); +} + // ======================================================================= // function : D3dColorSurface // purpose : diff --git a/src/D3DHost/D3DHost_View.hxx b/src/D3DHost/D3DHost_View.hxx index baa599979f..39c307851a 100644 --- a/src/D3DHost/D3DHost_View.hxx +++ b/src/D3DHost/D3DHost_View.hxx @@ -40,6 +40,9 @@ public: //! Default destructor. Standard_EXPORT virtual ~D3DHost_View(); + //! Release OpenGL resources. + Standard_EXPORT virtual void ReleaseGlResources (const Handle(OpenGl_Context)& theCtx) Standard_OVERRIDE; + //! Creates and maps rendering window to the view. //! @param theWindow [in] the window. //! @param theContext [in] the rendering context. If NULL the context will be created internally. diff --git a/src/OpenGl/OpenGl_View.cxx b/src/OpenGl/OpenGl_View.cxx index 57191a1d08..3f6b63bad8 100644 --- a/src/OpenGl/OpenGl_View.cxx +++ b/src/OpenGl/OpenGl_View.cxx @@ -1847,6 +1847,7 @@ void OpenGl_View::RedrawImmediate() Standard_True) || toSwap; if (aStereoMode == Graphic3d_StereoMode_SoftPageFlip && toSwap + && myFBO.get() == NULL && !aCtx->caps->buffersNoSwap) { aCtx->SwapBuffers(); @@ -1914,7 +1915,9 @@ void OpenGl_View::RedrawImmediate() aCtx->ShaderManager()->PushState (Handle(OpenGl_ShaderProgram)()); } - if (toSwap && !aCtx->caps->buffersNoSwap) + if (toSwap + && myFBO.get() == NULL + && !aCtx->caps->buffersNoSwap) { aCtx->SwapBuffers(); } diff --git a/src/OpenGl/OpenGl_View.hxx b/src/OpenGl/OpenGl_View.hxx index 5a8d6f0270..583bc2cfff 100644 --- a/src/OpenGl/OpenGl_View.hxx +++ b/src/OpenGl/OpenGl_View.hxx @@ -84,7 +84,7 @@ public: Standard_EXPORT virtual ~OpenGl_View(); //! Release OpenGL resources. - Standard_EXPORT void ReleaseGlResources (const Handle(OpenGl_Context)& theCtx); + Standard_EXPORT virtual void ReleaseGlResources (const Handle(OpenGl_Context)& theCtx); //! Deletes and erases the view. Standard_EXPORT virtual void Remove() Standard_OVERRIDE;