From f4aaa21b50ecfc58559d8e98097f1582ad220a0d Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 25 Apr 2005 18:10:58 +0000 Subject: [PATCH] GL_TRUE --- panda/src/glstuff/glGraphicsStateGuardian_src.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/glstuff/glGraphicsStateGuardian_src.cxx b/panda/src/glstuff/glGraphicsStateGuardian_src.cxx index b290dd4334..8089ee5ab8 100644 --- a/panda/src/glstuff/glGraphicsStateGuardian_src.cxx +++ b/panda/src/glstuff/glGraphicsStateGuardian_src.cxx @@ -5913,7 +5913,7 @@ finish_modify_state() { GLP(Disable)(GL_TEXTURE_GEN_R); GLP(Disable)(GL_TEXTURE_GEN_Q); if (_supports_point_sprite) { - GLP(TexEnvi)(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, FALSE); + GLP(TexEnvi)(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_FALSE); } TexGenAttrib::Mode mode = _current_tex_gen->get_mode(stage); @@ -6067,7 +6067,7 @@ finish_modify_state() { case TexGenAttrib::M_point_sprite: nassertv(_supports_point_sprite); - GLP(TexEnvi)(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, TRUE); + GLP(TexEnvi)(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE); got_point_sprites = true; break; }