Converted osg::notify to OSG_INFO etc.

This commit is contained in:
Robert Osfield
2010-05-28 16:05:47 +00:00
parent d23525889e
commit 40dcc0cd7d
9 changed files with 26 additions and 26 deletions

View File

@@ -39,7 +39,7 @@ ConnectedParticleSystem::~ConnectedParticleSystem()
Particle* ConnectedParticleSystem::createParticle(const Particle* ptemplate)
{
// osg::notify(osg::NOTICE)<<this<< " Creating particle "<<std::endl;
// OSG_NOTICE<<this<< " Creating particle "<<std::endl;
Particle* particle = ParticleSystem::createParticle(ptemplate);
int particleIndex = (int)(particle - &_particles[0]);
@@ -55,7 +55,7 @@ Particle* ConnectedParticleSystem::createParticle(const Particle* ptemplate)
if (_lastParticleCreated != Particle::INVALID_INDEX)
{
// osg::notify(osg::NOTICE)<<this<< " Connecting "<<_lastParticleCreated<<" to "<<particleIndex<<std::endl;
// OSG_NOTICE<<this<< " Connecting "<<_lastParticleCreated<<" to "<<particleIndex<<std::endl;
// write up the last created particle to this new particle
_particles[_lastParticleCreated].setNextParticle(particleIndex);
@@ -72,7 +72,7 @@ Particle* ConnectedParticleSystem::createParticle(const Particle* ptemplate)
void ConnectedParticleSystem::reuseParticle(int particleIndex)
{
// osg::notify(osg::NOTICE)<<this<< " Reusing particle "<<particleIndex<<std::endl;
// OSG_NOTICE<<this<< " Reusing particle "<<particleIndex<<std::endl;
if (particleIndex<0 || particleIndex>=(int)_particles.size()) return;