From Brede Johansen - Fixes to osg::Plane::valid and added a new set method.

From Stephan Huber - Compilation fix to Texture.cpp for OSX.

From Don Tidrow - added dirtyBound() to osgText::Text::setPosition
This commit is contained in:
Robert Osfield
2002-09-12 13:23:15 +00:00
parent 866af14f86
commit 5733cc1470
3 changed files with 12 additions and 4 deletions

View File

@@ -460,8 +460,8 @@ void Texture::flushDeletedTextureObjects(uint contextID)
DeletedTextureObjectCache::iterator citr = s_deletedTextureObjectCache.find(contextID);
if (citr!=s_deletedTextureObjectCache.end())
{
std::set<uint>& textureObjectSet = citr->second;
for(std::set<uint>::iterator titr=textureObjectSet.begin();
std::set<GLuint>& textureObjectSet = citr->second;
for(std::set<GLuint>::iterator titr=textureObjectSet.begin();
titr!=textureObjectSet.end();
++titr)
{