style cleanup

This commit is contained in:
Campbell Barton
2013-04-18 01:52:38 +00:00
parent 9cceec40c4
commit 3f7f07faf5
15 changed files with 31 additions and 31 deletions

View File

@@ -328,13 +328,13 @@ bool RAS_OpenGLRasterizer::BeginFrame(int drawingmode, double time)
// Blender camera routine destroys the settings
if (m_drawingmode < KX_SOLID)
{
glDisable (GL_CULL_FACE);
glDisable (GL_DEPTH_TEST);
glDisable(GL_CULL_FACE);
glDisable(GL_DEPTH_TEST);
}
else
{
glEnable(GL_DEPTH_TEST);
glEnable (GL_CULL_FACE);
glEnable(GL_CULL_FACE);
}
glDisable(GL_BLEND);