Yeah screw this, everything set here was absolutely correct to begin with and I shouldn't be applying patches while half awake when requested.

This reverts commit de947507b1.
This commit is contained in:
November
2010-10-14 16:43:32 -07:00
parent de947507b1
commit 58eff984da

View File

@@ -1278,7 +1278,9 @@ F32 LLFace::getTextureVirtualSize()
{
//apply texel area to face area to get accurate ratio
//face_area /= llclamp(texel_area, 1.f/64.f, 16.f);
face_area = mPixelArea / llclamp(texel_area, 0.015625f, 1024.f);
//face_area = mPixelArea / llclamp(texel_area, 0.015625f, 1024.f);
face_area = mPixelArea / llclamp(texel_area, 0.015625f, 128.f); // see SNOW-207
}
if(face_area > LLViewerImage::sMaxSmallImageSize)