Make sure the boundingvolumes for the btg files are as high as possible

in the scenegraph.

Modified Files:
	simgear/scene/tgdb/SGReaderWriterBTG.cxx
This commit is contained in:
frohlich
2009-03-15 15:06:19 +00:00
committed by Tim Moore
parent 88baaa72be
commit fd294b6f98

View File

@@ -77,7 +77,13 @@ SGReaderWriterBTG::readNode(const std::string& fileName,
return ReadResult::FILE_NOT_HANDLED;
}
typedef ModelRegistryCallback<DefaultProcessPolicy, NoCachePolicy,
NoOptimizePolicy, NoCopyPolicy,
NoSubstitutePolicy, BuildGroupBVHPolicy>
BTGCallback;
namespace
{
ModelRegistryCallbackProxy<LoadOnlyCallback> g_btgCallbackProxy("btg");
ModelRegistryCallbackProxy<BTGCallback> g_btgCallbackProxy("btg");
}