mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0033647: Visualization - A problem with viewer background corner aspects
Initialize and setup the gradient background shader in background drawing call
This commit is contained in:
parent
b78ccf1f9b
commit
e49db28066
@ -1103,6 +1103,13 @@ void OpenGl_View::drawBackground (const Handle(OpenGl_Workspace)& theWorkspace,
|
||||
if (myBackgrounds[Graphic3d_TOB_GRADIENT]->GradientFillMethod() >= Aspect_GradientFillMethod_Corner1
|
||||
&& myBackgrounds[Graphic3d_TOB_GRADIENT]->GradientFillMethod() <= Aspect_GradientFillMethod_Corner4)
|
||||
{
|
||||
// Set colored quad shader program
|
||||
Quantity_Color aColor1, aColor2;
|
||||
GradientBackground().Colors(aColor1, aColor2);
|
||||
myColoredQuadParams->Aspect()->SetShaderProgram(aCtx->ShaderManager()->GetColoredQuadProgram());
|
||||
myColoredQuadParams->Aspect()->ShaderProgram()->PushVariableVec3 ("uColor1", aColor1.Rgb());
|
||||
myColoredQuadParams->Aspect()->ShaderProgram()->PushVariableVec3 ("uColor2", aColor2.Rgb());
|
||||
|
||||
const OpenGl_Aspects* anOldAspectFace = theWorkspace->SetAspects (myColoredQuadParams);
|
||||
|
||||
myBackgrounds[Graphic3d_TOB_GRADIENT]->Render (theWorkspace, theProjection);
|
||||
|
@ -211,8 +211,8 @@ static struct
|
||||
}
|
||||
}
|
||||
|
||||
} ViewerTest_DefaultBackground = { Quantity_NOC_BLACK, Quantity_NOC_BLACK, Quantity_NOC_BLACK, Aspect_GradientFillMethod_None };
|
||||
|
||||
} ViewerTest_DefaultBackground = { Quantity_NOC_BLACK, Quantity_NOC_BLACK, Quantity_NOC_BLACK, Aspect_GradientFillMethod_None };
|
||||
|
||||
//==============================================================================
|
||||
// EVENT GLOBAL VARIABLES
|
||||
//==============================================================================
|
||||
@ -795,7 +795,6 @@ TCollection_AsciiString ViewerTest::ViewerInit (const ViewerTest_VinitParams& th
|
||||
#endif
|
||||
|
||||
VT_GetWindow()->Map();
|
||||
|
||||
// Set the handle of created view in the event manager
|
||||
ViewerTest::ResetEventManager();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user