summaryrefslogtreecommitdiff
path: root/indra/newview/llface.cpp
diff options
context:
space:
mode:
authorRunitai Linden <davep@lindenlab.com>2020-03-24 11:22:01 -0500
committerRunitai Linden <davep@lindenlab.com>2020-03-24 11:22:01 -0500
commit3d22273726ab4d40f2eb9afc5ceeac37471a9dfa (patch)
treeeafaf3a6a205955a4014bfcf33dec4b531951aa7 /indra/newview/llface.cpp
parent3e472948db34e8efc905b5b50249f4587ba1507f (diff)
Fix for bad fullbright shiny shininess values and inconsistency between materialF and fullbrightShinyF
Diffstat (limited to 'indra/newview/llface.cpp')
-rw-r--r--indra/newview/llface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp
index 59269c2115..18ea184da6 100644
--- a/indra/newview/llface.cpp
+++ b/indra/newview/llface.cpp
@@ -1423,9 +1423,9 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
static const GLfloat SHININESS_TO_ALPHA[4] =
{
0.0000f,
- 0.3333f,
- 0.6666f,
- 1.0000f
+ 0.25f,
+ 0.5f,
+ 0.75f
};
llassert(tep->getShiny() <= 3);