From e06253cf218205add3537f741b28be8c6e48f87a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 23 Jun 2016 17:08:04 +0100 Subject: [PATCH] Added initializer --- src/osgUtil/Tessellator.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/osgUtil/Tessellator.cpp b/src/osgUtil/Tessellator.cpp index d410ce298..f8dcf586b 100644 --- a/src/osgUtil/Tessellator.cpp +++ b/src/osgUtil/Tessellator.cpp @@ -24,7 +24,9 @@ using namespace osgUtil; Tessellator::Tessellator() : _wtype(TESS_WINDING_ODD), _ttype(TESS_TYPE_POLYGONS), - _boundaryOnly(false), _numberVerts(0) + _boundaryOnly(false), + _numberVerts(0), + _extraPrimitives(0) { _tobj = gluNewTess(); if (_tobj)