Skip to content

Commit 116a18b

Browse files
committed
fix a subdivision bug
1 parent 613da80 commit 116a18b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/osgEarthDrivers/engine_rex/TileNode.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,8 @@ TileNode::cull(TerrainCuller* culler)
436436
// whether it is OK to load data (if necessary)
437437
bool canLoadData =
438438
_doNotExpire ||
439-
_key.getLOD() == _context->options().getFirstLOD();
439+
_key.getLOD() >= _context->options().getFirstLOD();
440+
//_key.getLOD() >= _context->options().getMinLOD();
440441

441442
// whether to accept the current surface node and not the children.
442443
bool canAcceptSurface = false;

0 commit comments

Comments
 (0)