From 749dc86dd31459f21a8c73c43ed10fee166312be Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 23 Jan 2019 08:52:11 +0000 Subject: [PATCH] Fixed typo --- include/osgParticle/ParticleSystem | 2 +- src/osgParticle/ParticleSystem.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgParticle/ParticleSystem b/include/osgParticle/ParticleSystem index 685d1951a..35e97ff89 100644 --- a/include/osgParticle/ParticleSystem +++ b/include/osgParticle/ParticleSystem @@ -265,7 +265,7 @@ namespace osgParticle * for all graphics contexts. */ virtual void releaseGLObjects(osg::State* state=0) const; - virtual osg::VertexArrayState* createVertexArrayStateImplemenation(osg::RenderInfo& renderInfo) const; + virtual osg::VertexArrayState* createVertexArrayStateImplementation(osg::RenderInfo& renderInfo) const; void adjustEstimatedMaxNumOfParticles(int delta) { _estimatedMaxNumOfParticles += delta; } diff --git a/src/osgParticle/ParticleSystem.cpp b/src/osgParticle/ParticleSystem.cpp index d453904d2..a01f2f025 100644 --- a/src/osgParticle/ParticleSystem.cpp +++ b/src/osgParticle/ParticleSystem.cpp @@ -685,7 +685,7 @@ void osgParticle::ParticleSystem::releaseGLObjects(osg::State* state) const } } -osg::VertexArrayState* osgParticle::ParticleSystem::createVertexArrayStateImplemenation(osg::RenderInfo& renderInfo) const +osg::VertexArrayState* osgParticle::ParticleSystem::createVertexArrayStateImplementation(osg::RenderInfo& renderInfo) const { osg::State& state = *renderInfo.getState();