From 4be51fa5598c2ec2aa8dca2e0f00ef79a0732e1e Mon Sep 17 00:00:00 2001 From: Ptolemy Date: Fri, 7 Feb 2020 16:17:15 -0800 Subject: DRTVWR-440: SL-12574: Tweak environment cube map to better match Windlight --- indra/newview/llface.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'indra/newview/llface.cpp') diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index 209dc010d4..174d8e34d1 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -1419,17 +1419,16 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume, if (shiny_in_alpha) { - - static const GLfloat alpha[4] = + static const GLfloat SHININESS_TO_ALPHA[4] = { - 0.00f, - 0.25f, - 0.5f, - 0.75f + 0.0000f, + 0.3333f, + 0.6666f, + 1.0000f }; llassert(tep->getShiny() <= 3); - color.mV[3] = U8 (alpha[tep->getShiny()] * 255); + color.mV[3] = U8 (SHININESS_TO_ALPHA[tep->getShiny()] * 255); } } } -- cgit v1.3