**********************************************************************************************************************
***osg多机同步swapbuffer的实现方式。
***osg中真正调用opengl::swapbuffer的地方在 osg::GrapicsContext::swapBuffers()中调用的。
***如果developer想干预的话 可以调用 osg::GrapicsContext::setSwapCallback(SwapCallback* rc)来设置自定义的缓存交换回调。
***自定义的回调必须调用GraphicsContext::swapBuffersImplementation()函数.
***typedef std::vector<osg::GraphicsContext*> Contexts;
***osg::Viewer::getContexts(Contexts& contexts, bool onlyValid=true); 可以获取grapicscontext的数组
***********************************************************************************************************************