Fix navagation error about Android GLES2 example.
Android GLES2 example use event queue without initializing window rectangle with graphics context,that produce navigation error.
This commit is contained in:
parent
f4fe1e5cec
commit
315031fa3b
@ -103,7 +103,9 @@ void OsgMainApp::initOsgWindow(int x,int y,int width,int height){
|
|||||||
osg::notify(osg::ALWAYS)<<"Testing"<<std::endl;
|
osg::notify(osg::ALWAYS)<<"Testing"<<std::endl;
|
||||||
|
|
||||||
_viewer = new osgViewer::Viewer();
|
_viewer = new osgViewer::Viewer();
|
||||||
_viewer->setUpViewerAsEmbeddedInWindow(x, y, width, height);
|
osgViewer::GraphicsWindowEmbedded* window = _viewer->setUpViewerAsEmbeddedInWindow(x, y, width, height);
|
||||||
|
_viewer->getEventQueue()->setGraphicsContext(window);
|
||||||
|
_viewer->getEventQueue()->syncWindowRectangleWithGraphicsContext();
|
||||||
_viewer->setThreadingModel(osgViewer::ViewerBase::SingleThreaded);
|
_viewer->setThreadingModel(osgViewer::ViewerBase::SingleThreaded);
|
||||||
|
|
||||||
_root = new osg::Group();
|
_root = new osg::Group();
|
||||||
|
Loading…
Reference in New Issue
Block a user