From Andre Garneau:

* Fix for the aspect ratio not being properly set when screens have
different aspect ratios.
* Minor fix for makeCurrentImplementation being called directly instead of
makeCurrent() causing the owning thread pointer not being tracked
* Fix for osglauncher so that it sets its update text regions to DYNAMIC to
prevent multi-threading issues.
This commit is contained in:
Robert Osfield
2007-02-18 14:21:16 +00:00
parent 9d1e6e107c
commit d8e6436dc1
3 changed files with 17 additions and 21 deletions

View File

@@ -217,7 +217,7 @@ void OperationsThread::run()
GraphicsContext* graphicsContext = dynamic_cast<GraphicsContext*>(_parent.get());
if (graphicsContext)
{
graphicsContext->makeCurrentImplementation();
graphicsContext->makeCurrent();
}
osg::notify(osg::INFO)<<"Doing run "<<this<<" isRunning()="<<isRunning()<<std::endl;