1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0033729: Visualization - Fixed transparency for capping in 'Graphic3d_RTM_BLEND_OIT' mode

Added changes connected with restoring of color mask (if we store and restore only rgb part, we can miss transparency)
This commit is contained in:
Vitaut Tryputsin 2024-05-30 13:26:24 +03:00 committed by dpasukhi
parent d51eb087ab
commit ca0c5a4074

View File

@ -121,8 +121,8 @@ namespace
aContext->ShaderManager()->UpdateClippingState();
aContext->core11fwd->glClear (GL_STENCIL_BUFFER_BIT);
const bool aColorMaskBack = aContext->SetColorMask (false);
const NCollection_Vec4<bool> aColorMaskBack = aContext->ColorMaskRGBA();
aContext->SetColorMask (false);
// override aspects, disable culling
theWorkspace->SetAspects (&theWorkspace->NoneCulling());
theWorkspace->ApplyAspects();
@ -164,7 +164,7 @@ namespace
aContext->ShaderManager()->UpdateClippingState();
// render capping plane using the generated stencil mask
aContext->SetColorMask (aColorMaskBack);
aContext->SetColorMaskRGBA (aColorMaskBack);
if (theWorkspace->UseDepthWrite())
{
aContext->core11fwd->glDepthMask (GL_TRUE);