mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025217: Draw Harness - activate GLSL warnings output within command vgldebug
This commit is contained in:
parent
7d3e64ef5e
commit
aaf512f112
@ -4035,10 +4035,15 @@ static int VGlDebug (Draw_Interpretor& theDI,
|
|||||||
Standard_Integer theArgNb,
|
Standard_Integer theArgNb,
|
||||||
const char** theArgVec)
|
const char** theArgVec)
|
||||||
{
|
{
|
||||||
|
Handle(OpenGl_GraphicDriver) aDriver;
|
||||||
|
Handle(V3d_View) aView = ViewerTest::CurrentView();
|
||||||
|
if (!aView.IsNull())
|
||||||
|
{
|
||||||
|
aDriver = Handle(OpenGl_GraphicDriver)::DownCast (aView->Viewer()->Driver());
|
||||||
|
}
|
||||||
if (theArgNb < 2)
|
if (theArgNb < 2)
|
||||||
{
|
{
|
||||||
Handle(V3d_View) aView = ViewerTest::CurrentView();
|
if (aDriver.IsNull())
|
||||||
if (aView.IsNull())
|
|
||||||
{
|
{
|
||||||
std::cerr << "No active view. Please call vinit.\n";
|
std::cerr << "No active view. Please call vinit.\n";
|
||||||
return 0;
|
return 0;
|
||||||
@ -4051,7 +4056,15 @@ static int VGlDebug (Draw_Interpretor& theDI,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ViewerTest_myDefaultCaps.contextDebug = Draw::Atoi (theArgVec[1]) != 0;
|
const Standard_Boolean toEnableDebug = Draw::Atoi (theArgVec[1]) != 0;
|
||||||
|
ViewerTest_myDefaultCaps.contextDebug = toEnableDebug;
|
||||||
|
ViewerTest_myDefaultCaps.glslWarnings = toEnableDebug;
|
||||||
|
if (aDriver.IsNull())
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
aDriver->ChangeOptions().glslWarnings = toEnableDebug;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user