diff --git a/src/osgParticle/ParticleSystem.cpp b/src/osgParticle/ParticleSystem.cpp index 6958f4bb8..594df3ba8 100644 --- a/src/osgParticle/ParticleSystem.cpp +++ b/src/osgParticle/ParticleSystem.cpp @@ -411,7 +411,7 @@ void osgParticle::ParticleSystem::drawImplementation(osg::RenderInfo& renderInfo texcoords.push_back(t1); texcoords.push_back(t2); -#if !defined(OSG_GLES2_AVAILABLE) +#if defined(OSG_GL1_AVAILABLE) || defined(OSG_GL2_AVAILABLE) || defined(OSG_GLES1_AVAILABLE) const unsigned int count = 4; const GLenum mode = GL_QUADS; @@ -419,7 +419,7 @@ void osgParticle::ParticleSystem::drawImplementation(osg::RenderInfo& renderInfo vertices.push_back(c3); texcoords.push_back(t3); #else - // No GL_QUADS mode on GLES2 and upper + // No GL_QUADS mode on OpenGL 3 and upper / GLES2 and upper const unsigned int count = 6; const GLenum mode = GL_TRIANGLES;