style cleanup

This commit is contained in:
Campbell Barton
2012-10-22 08:15:51 +00:00
parent 30fd258a0b
commit ddc2dbc2a4
218 changed files with 1296 additions and 1301 deletions

View File

@@ -239,10 +239,10 @@ void RAS_OpenGLRasterizer::DisplayFog()
glFogf(GL_FOG_DENSITY, 0.1f);
glFogf(GL_FOG_START, m_fogstart);
glFogf(GL_FOG_END, m_fogstart + m_fogdist);
params[0]= m_fogr;
params[1]= m_fogg;
params[2]= m_fogb;
params[3]= 0.0;
params[0] = m_fogr;
params[1] = m_fogg;
params[2] = m_fogb;
params[3] = 0.0;
glFogfv(GL_FOG_COLOR, params);
glEnable(GL_FOG);
}