From 325dca9f212f9fd44cd10a8180529970c7a08c72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Mon, 21 Jun 2021 18:11:55 +0700 Subject: Remove trailing whitespaces and duplicated blank lines --- src/Fog.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/Fog.cpp') diff --git a/src/Fog.cpp b/src/Fog.cpp index 21ca229..82f1d88 100644 --- a/src/Fog.cpp +++ b/src/Fog.cpp @@ -18,7 +18,7 @@ void Fog::SetFog(float colorR, float colorG, float colorB, float fStart, float f glFogi(GL_FOG_HINT,GL_DONT_CARE); glFogi(GL_FOG_START,fogStart); glFogi(GL_FOG_END,fogEnd); - + glEnable(GL_FOG); } @@ -36,7 +36,7 @@ void Fog::TempFog(float colorR, float colorG, float colorB) glFogi(GL_FOG_HINT,GL_DONT_CARE); glFogi(GL_FOG_START,fogStart); glFogi(GL_FOG_END,fogEnd); - + glEnable(GL_FOG); } @@ -48,7 +48,6 @@ void Fog::ResetFog() glFogi(GL_FOG_HINT,GL_DONT_CARE); glFogi(GL_FOG_START,fogStart); glFogi(GL_FOG_END,fogEnd); - + glEnable(GL_FOG); } - -- cgit v1.2.3