diff --git a/include/osgUtil/GraphicsCostEstimator b/include/osgUtil/GraphicsCostEstimator
index edd1d6ad3..d25df4c28 100644
--- a/include/osgUtil/GraphicsCostEstimator
+++ b/include/osgUtil/GraphicsCostEstimator
@@ -39,7 +39,6 @@ struct ClampedLinearCostFunction1D
double operator() (unsigned int input) const
{
- OSG_NOTICE<<"ClampedLinearCostFunction1D::operator("<estimateCompileCost(geometry); }
CostPair estimateDrawCost(const osg::Geometry* geometry) const { return _geometryEstimator->estimateDrawCost(geometry); }
- CostPair estimateCompileCost(const osg::Texture* texture) const { return _textureEstimator->estimateDrawCost(texture); }
+ CostPair estimateCompileCost(const osg::Texture* texture) const { return _textureEstimator->estimateCompileCost(texture); }
CostPair estimateDrawCost(const osg::Texture* texture) const { return _textureEstimator->estimateDrawCost(texture); }
CostPair estimateCompileCost(const osg::Program* program) const { return _programEstimator->estimateCompileCost(program); }
diff --git a/src/osgUtil/GraphicsCostEstimator.cpp b/src/osgUtil/GraphicsCostEstimator.cpp
index 235a6ad87..b26f83423 100644
--- a/src/osgUtil/GraphicsCostEstimator.cpp
+++ b/src/osgUtil/GraphicsCostEstimator.cpp
@@ -46,7 +46,7 @@ void GeometryCostEstimator::calibrate(osg::RenderInfo& renderInfo)
CostPair GeometryCostEstimator::estimateCompileCost(const osg::Geometry* geometry) const
{
- OSG_NOTICE<<"GeometryCostEstimator::estimateCompileCost(..)"<getUseVertexBufferObjects() && geometry->areFastPathsUsed();
bool usesDL = !usesVBO && geometry->getUseDisplayList() && geometry->getSupportsDisplayList();
@@ -79,7 +79,7 @@ CostPair GeometryCostEstimator::estimateCompileCost(const osg::Geometry* geometr
cost.first = _displayListCompileConstant + _displayListCompileFactor * cost.first ;
}
- OSG_NOTICE<<" cost.first="<