From b31c520a39595fabb2b667474fbf54921d7f5fd4 Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 5 Jun 2001 19:50:36 +0000 Subject: [PATCH] Removed 'x' from the xgl* calls. --- src/Weather/weather.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Weather/weather.hxx b/src/Weather/weather.hxx index a1ee77b51..c8728e854 100644 --- a/src/Weather/weather.hxx +++ b/src/Weather/weather.hxx @@ -55,7 +55,7 @@ public: inline double get_visibility() const { return visibility; } inline void set_visibility( double v ) { - xglMatrixMode(GL_MODELVIEW); + glMatrixMode(GL_MODELVIEW); // in meters visibility = v; @@ -66,8 +66,8 @@ public: fog_exp2_density = sqrt( -log(0.01) ) / visibility; // Set correct opengl fog density - xglFogf (GL_FOG_DENSITY, fog_exp2_density); - xglFogi( GL_FOG_MODE, GL_EXP2 ); + glFogf (GL_FOG_DENSITY, fog_exp2_density); + glFogi( GL_FOG_MODE, GL_EXP2 ); // SG_LOG( SG_INPUT, SG_DEBUG, "Fog density = " << fog_density ); // SG_LOG( SG_INPUT, SG_INFO, -- 2.39.5