EXTranslator: Disambiguate clamp().

This commit is contained in:
Augustin Cavalier 2021-12-07 14:22:24 -05:00
parent 365c228de7
commit f0213b4407

View File

@ -11,7 +11,6 @@
#include <algorithm>
using namespace std;
using Imath::clamp;
float
@ -97,5 +96,5 @@ Gamma::operator() (half h)
// Scale and clamp
//
return clamp (x * s, 0.f, 255.f);
return Imath::clamp (x * s, 0.f, 255.f);
}