mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023035: TKOpenGl redesign regression caused by destruction of global OpenGl_Display instance
Do not destroy global openglDisplay instance
This commit is contained in:
parent
d5e4971b17
commit
0003c4b287
@ -69,7 +69,10 @@ Standard_Boolean OpenGl_GraphicDriver::Begin (const Aspect_Display ADisplay)
|
||||
|
||||
void OpenGl_GraphicDriver::End ()
|
||||
{
|
||||
openglDisplay.Nullify();
|
||||
// This is unsafe to realease global object here
|
||||
// because noone guaranteed that only one instance of OpenGl_GraphicDriver is used!
|
||||
// So we disable this destructor here until openglDisplay not moved to OpenGl_GraphicDriver class definition.
|
||||
///openglDisplay.Nullify();
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
|
@ -85,7 +85,7 @@ EvalViewMappingMatrix( tel_view_mapping mapping /* View Mapping */,
|
||||
}
|
||||
|
||||
/* prp between front and back planes */
|
||||
if (!openglDisplay.IsNull() || !openglDisplay->Walkthrough())
|
||||
if (openglDisplay.IsNull() || !openglDisplay->Walkthrough())
|
||||
{
|
||||
if( mapping->prp[2] < mapping->fpd &&
|
||||
mapping->prp[2] > mapping->bpd )
|
||||
|
Loading…
x
Reference in New Issue
Block a user