From 75174c1be19b37fbd02b095aff26b964392a87dc Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 5 Dec 2003 22:42:02 +0000 Subject: [PATCH] Changed the minium tri strip length to 2 rather than 0. --- include/osgUtil/TriStripVisitor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osgUtil/TriStripVisitor b/include/osgUtil/TriStripVisitor index 0c65fe764..c3acb1f6e 100644 --- a/include/osgUtil/TriStripVisitor +++ b/include/osgUtil/TriStripVisitor @@ -35,7 +35,7 @@ class OSGUTIL_EXPORT TriStripVisitor : public osg::NodeVisitor TriStripVisitor() : osg::NodeVisitor( osg::NodeVisitor::TRAVERSE_ALL_CHILDREN ), _cacheSize( 24 ), - _minStripSize( 0 ) + _minStripSize( 2 ) {} /** Convert mesh primitives in Geometry into Tri Strips.