For what it's worth, I got quad-buffered stereo (osg 2.9.6) working with Qt 4.6. My implementation is based on the AdapterWidget in the osgviewerQT example with the following addition:
Widget::Widget(QWidget* parent, const QGLWidget* shareWidget, Qt::WindowFlags flags) #ifdef SUPPORT_QUADBUFFER : QGLWidget(QGLFormat(QGL::DoubleBuffer | QGL::DepthBuffer | QGL::Rgba | QGL::StencilBuffer | QGL::AlphaChannel | QGL::StereoBuffers), parent, shareWidget, flags) #else // without quad-buffered stereo : QGLWidget(parent, shareWidget, flags) #endif // ... Hope this helps, Christian. _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

