Skip to content
Snippets Groups Projects
Commit dbef1616 authored by David Parks's avatar David Parks
Browse files

SH-2240 Make alpha mask cutoff even less aggressive (fix for eyes on Curious Ringtail avatar)

parent cfb666e9
No related branches found
No related tags found
No related merge requests found
...@@ -1838,7 +1838,7 @@ void LLImageGL::analyzeAlpha(const void* data_in, U32 w, U32 h) ...@@ -1838,7 +1838,7 @@ void LLImageGL::analyzeAlpha(const void* data_in, U32 w, U32 h)
// this to be an intentional effect and don't treat as a mask. // this to be an intentional effect and don't treat as a mask.
U32 midrangetotal = 0; U32 midrangetotal = 0;
for (U32 i = 4; i < 11; i++) for (U32 i = 2; i < 13; i++)
{ {
midrangetotal += sample[i]; midrangetotal += sample[i];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment