1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-19 22:53:53 +00:00

fix sunglare flash, make sure all bound render targets have color masks set

This commit is contained in:
Cody Glassman 2023-02-25 15:14:01 -08:00 committed by Alexei Dobrohotov
parent 7a52b9d1d8
commit 7fb4acaaf2

View file

@ -10,6 +10,7 @@
#include <osg/TexMat>
#include <osg/OcclusionQueryNode>
#include <osg/ColorMask>
#include <osg/ColorMaski>
#include <osg/BlendFunc>
#include <osg/AlphaFunc>
#include <osg/observer_ptr>
@ -794,7 +795,8 @@ namespace MWRender
// Disable writing to the color buffer. We are using this geometry for visibility tests only.
osg::ref_ptr<osg::ColorMask> colormask = new osg::ColorMask(0, 0, 0, 0);
stateset->setAttributeAndModes(colormask);
if (sceneManager.getSupportsNormalsRT())
stateset->setAttributeAndModes(new osg::ColorMaski(1, false, false, false, false));
mTransform->addChild(queryNode);
mOcclusionQueryVisiblePixels = createOcclusionQueryNode(queryNode, true);