2005-07-21 16:43:24 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2005 Robert Osfield
|
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <osg/GraphicsContext>
|
2005-07-25 22:28:22 +08:00
|
|
|
#include <osg/Notify>
|
|
|
|
#include <map>
|
2005-07-21 16:43:24 +08:00
|
|
|
|
|
|
|
using namespace osg;
|
|
|
|
|
|
|
|
static ref_ptr<GraphicsContext::CreateGraphicContexCallback> s_createGraphicsContextCallback;
|
|
|
|
|
|
|
|
void GraphicsContext::setCreateGraphicsContextCallback(CreateGraphicContexCallback* callback)
|
|
|
|
{
|
|
|
|
s_createGraphicsContextCallback = callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
GraphicsContext::CreateGraphicContexCallback* GraphicsContext::getCreateGraphicsContextCallback()
|
|
|
|
{
|
|
|
|
return s_createGraphicsContextCallback.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
GraphicsContext* GraphicsContext::createGraphicsContext(Traits* traits)
|
|
|
|
{
|
|
|
|
if (s_createGraphicsContextCallback.valid())
|
|
|
|
return s_createGraphicsContextCallback->createGraphicsContext(traits);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-07-25 22:28:22 +08:00
|
|
|
|
|
|
|
typedef std::map<unsigned int, unsigned int> ContextIDMap;
|
|
|
|
static ContextIDMap s_contextIDMap;
|
|
|
|
static OpenThreads::Mutex s_contextIDMapMutex;
|
|
|
|
|
|
|
|
unsigned int GraphicsContext::createNewContextID()
|
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(s_contextIDMapMutex);
|
|
|
|
|
|
|
|
// first check to see if we can reuse contextID;
|
|
|
|
for(ContextIDMap::iterator itr = s_contextIDMap.begin();
|
|
|
|
itr != s_contextIDMap.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if (itr->second == 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
// reuse contextID;
|
|
|
|
itr->second = 1;
|
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"GraphicsContext::createNewContextID() reusing contextID="<<itr->first<<std::endl;
|
|
|
|
|
|
|
|
return itr->first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int contextID = s_contextIDMap.size();
|
|
|
|
s_contextIDMap[contextID] = 1;
|
|
|
|
|
|
|
|
osg::notify(osg::INFO)<<"GraphicsContext::createNewContextID() creating contextID="<<contextID<<std::endl;
|
|
|
|
|
|
|
|
|
|
|
|
if ( (contextID+1) > osg::DisplaySettings::instance()->getMaxNumberOfGraphicsContexts() )
|
|
|
|
{
|
|
|
|
osg::notify(osg::INFO)<<"Updating the MaxNumberOfGraphicsContexts to "<<contextID+1<<std::endl;
|
|
|
|
|
|
|
|
// update the the maximum number of graphics contexts,
|
|
|
|
// to ensure that texture objects and display buffers are configured to the correct size.
|
|
|
|
osg::DisplaySettings::instance()->setMaxNumberOfGraphicsContexts( contextID + 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return contextID;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GraphicsContext::incrementContextIDUsageCount(unsigned int contextID)
|
|
|
|
{
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(s_contextIDMapMutex);
|
|
|
|
|
|
|
|
osg::notify(osg::INFO)<<"GraphicsContext::incrementContextIDUsageCount("<<contextID<<") to "<<s_contextIDMap[contextID]<<std::endl;
|
|
|
|
|
|
|
|
++s_contextIDMap[contextID];
|
|
|
|
}
|
|
|
|
|
|
|
|
void GraphicsContext::decrementContextIDUsageCount(unsigned int contextID)
|
|
|
|
{
|
|
|
|
|
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(s_contextIDMapMutex);
|
|
|
|
|
|
|
|
|
|
|
|
if (s_contextIDMap[contextID]!=0)
|
|
|
|
{
|
|
|
|
--s_contextIDMap[contextID];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::NOTICE)<<"Warning: decrementContextIDUsageCount("<<contextID<<") called on expired contextID."<<std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
osg::notify(osg::INFO)<<"GraphicsContext::decrementContextIDUsageCount("<<contextID<<") to "<<s_contextIDMap[contextID]<<std::endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-21 16:43:24 +08:00
|
|
|
GraphicsContext::GraphicsContext():
|
|
|
|
_threadOfLastMakeCurrent(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-07-25 22:28:22 +08:00
|
|
|
GraphicsContext::~GraphicsContext()
|
|
|
|
{
|
|
|
|
if (_state.valid())
|
|
|
|
{
|
|
|
|
decrementContextIDUsageCount(_state->getContextID());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|