_cullMaskRight was not being initialized in the constructor which was

resulting in some sporadic problems when running stereo - occoasionally the
right eye view wouldn't appear!
This commit is contained in:
Robert Osfield
2002-03-21 11:57:16 +00:00
parent 3816a4fcfc
commit b53b3038eb

View File

@@ -37,7 +37,7 @@ SceneView::SceneView(DisplaySettings* ds)
_cullMask = 0xffffffff;
_cullMaskLeft = 0xffffffff;
_cullMaskLeft = 0xffffffff;
_cullMaskRight = 0xffffffff;
}