From Bart Gallet, updates to VisualStudo .dsp's to keep things compiling under Windows.
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user