From e466ab255d8bda1d1c5e27dd2291d11d53a50691 Mon Sep 17 00:00:00 2001
From: Ptolemy <ptolemy@lindenlab.com>
Date: Wed, 18 Mar 2020 23:35:17 -0700
Subject: [PATCH] SL-12574 Cleanup unused final_atten

---
 indra/newview/lllegacyatmospherics.cpp | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/indra/newview/lllegacyatmospherics.cpp b/indra/newview/lllegacyatmospherics.cpp
index 2bba56f646a..a2acb3efe2d 100644
--- a/indra/newview/lllegacyatmospherics.cpp
+++ b/indra/newview/lllegacyatmospherics.cpp
@@ -369,11 +369,6 @@ void LLAtmospherics::calcSkyColorWLVert(const LLSettingsSky::ptr_t &psky, LLVect
 	// Haze color below cloud
 	vars.hazeColorBelowCloud = (blue_factor * (sunlight + tmpAmbient) + componentMult(haze_factor, sunlight * temp2.mV[0] + tmpAmbient));	
 
-    LLColor3 final_atten = LLColor3::white - temp1;
-    final_atten.mV[0] = llmax(final_atten.mV[0], 0.0f);
-    final_atten.mV[1] = llmax(final_atten.mV[1], 0.0f);
-    final_atten.mV[2] = llmax(final_atten.mV[2], 0.0f);
-
 	// Final atmosphere additive
 	componentMultBy(vars.hazeColor, LLColor3::white - temp1);
 
-- 
GitLab