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

0031082: Visualization - crash on display if there are no lights in the view

OpenGl_View - fixed uninitialized property myLights.
This commit is contained in:
kgv 2019-10-20 14:53:13 +03:00 committed by apn
parent a6a66c3a21
commit 8445efca81

View File

@ -97,6 +97,7 @@ OpenGl_View::OpenGl_View (const Handle(Graphic3d_StructureManager)& theMgr,
Handle(Graphic3d_CLight) aLight = new Graphic3d_CLight (Graphic3d_TOLS_AMBIENT);
aLight->SetHeadlight (false);
aLight->SetColor (Quantity_NOC_WHITE);
myLights = new Graphic3d_LightSet();
myNoShadingLight = new Graphic3d_LightSet();
myNoShadingLight->Add (aLight);