Quietened down debug message output for osgText shader setup and Drawable::createVertexArrayStateImplementation

This commit is contained in:
Robert Osfield
2018-04-05 14:14:49 +01:00
parent 4cb697205e
commit 914e60a872
3 changed files with 16 additions and 8 deletions

View File

@@ -693,7 +693,7 @@ void Drawable::draw(RenderInfo& renderInfo) const
VertexArrayState* Drawable::createVertexArrayStateImplementation(RenderInfo& renderInfo) const
{
OSG_NOTICE<<"VertexArrayState* Drawable::createVertexArrayStateImplementation(RenderInfo& renderInfo) const "<<this<<std::endl;
OSG_INFO<<"VertexArrayState* Drawable::createVertexArrayStateImplementation(RenderInfo& renderInfo) const "<<this<<std::endl;
VertexArrayState* vos = new osg::VertexArrayState(renderInfo.getState());
vos->assignAllDispatchers();
return vos;