diff options
author | Merov Linden <merov@lindenlab.com> | 2014-01-08 21:19:21 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-01-08 21:19:21 -0800 |
commit | 70b877da0eccca2e11c810a92c0a928baf802334 (patch) | |
tree | 33112874527cfc01e0e650e810eb04709ce0c448 | |
parent | ac3becf8d850c76fdd5cb4913cab57033bfb3648 (diff) |
Fix ambiguous pow call (use powf) instead
-rwxr-xr-x | indra/llimage/llimage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimage.cpp b/indra/llimage/llimage.cpp index a30646d846..14fa71d828 100755 --- a/indra/llimage/llimage.cpp +++ b/indra/llimage/llimage.cpp @@ -1042,7 +1042,7 @@ void LLImageRaw::filterGamma(F32 gamma, const LLColor3& alpha) for (S32 i = 0; i < 256; i++) { - F32 gamma_i = llclampf((float)(pow((float)(i)/255.0,gamma))); + F32 gamma_i = llclampf((float)(powf((float)(i)/255.0,gamma))); // Blend in with alpha values gamma_red_lut[i] = (U8)((1.0 - alpha.mV[0]) * (float)(i) + alpha.mV[0] * 255.0 * gamma_i); gamma_green_lut[i] = (U8)((1.0 - alpha.mV[1]) * (float)(i) + alpha.mV[1] * 255.0 * gamma_i); |