From Bart Gallet, updates to VisualStudo .dsp's to keep things compiling under Windows.

This commit is contained in:
Robert Osfield
2003-07-15 09:39:45 +00:00
parent 953ac782ac
commit b2e5e09c28
6 changed files with 52 additions and 433 deletions

View File

@@ -112,11 +112,11 @@ bool PagedLOD_writeLocalData(const Object& obj, Output& fw)
fw.indent() << "}"<< std::endl;
fw.indent() << "num_children " << numChildrenToWriteOut << std::endl;
for(unsigned int i=0;i<lod.getNumChildren();++i)
for(unsigned int j=0;j<lod.getNumChildren();++j)
{
if (lod.getFileName(i).empty())
if (lod.getFileName(j).empty())
{
fw.writeObject(*lod.getChild(i));
fw.writeObject(*lod.getChild(j));
}
}

View File

@@ -100,7 +100,7 @@ void DatabasePager::requestNodeFile(const std::string& fileName,osg::Group* grou
}
}
class DatabasePager::FindCompileableRenderingObjectsVisitor : public osg::NodeVisitor
class FindCompileableRenderingObjectsVisitor : public osg::NodeVisitor
{
public:
FindCompileableRenderingObjectsVisitor(DatabasePager::DataToCompile& dataToCompile):
@@ -421,7 +421,7 @@ void DatabasePager::removeExpiredSubgraphs(double currentFrameTime)
}
class DatabasePager::FindPagedLODsVisitor : public osg::NodeVisitor
class FindPagedLODsVisitor : public osg::NodeVisitor
{
public:
FindPagedLODsVisitor(DatabasePager::PagedLODList& pagedLODList):