Hi Robert,
I just stumbled across what looks to me like a simple copy/paste bug in
Camera::inheritCullSettings():
Code:
if (inheritanceMask & READ_BUFFER)
_drawBuffer = camera->_readBuffer;
Should instead be...
Code:
if (inheritanceMask & READ_BUFFER)
_readBuffer = camera->_readBuffer;
Thanks,
-Brad
[/code]
------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=61632#61632
Attachments:
http://forum.openscenegraph.org//files/camera_126.cpp
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org