mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-19 15:09:43 +00:00
fix sunglare flash, make sure all bound render targets have color masks set
This commit is contained in:
parent
5b2a2a4484
commit
fb5979312f
1 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
#include <osg/AlphaFunc>
|
||||
#include <osg/BlendFunc>
|
||||
#include <osg/ColorMask>
|
||||
#include <osg/ColorMaski>
|
||||
#include <osg/Depth>
|
||||
#include <osg/Geometry>
|
||||
#include <osg/Material>
|
||||
|
@ -798,7 +799,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);
|
||||
|
|
Loading…
Reference in a new issue