Fix Windows build - it doesn't have a log2f() function...
Committed r96761: <http://trac.webkit.org/changeset/96761>
Another option is to add a log2f function to wtf/MathExtras.h for Windows to use.
In the past we have fixed problems like this by adding functions to MathExtras.h to smooth over differences between what platforms have in their <math.h> headers.
Darin is like my much more eloquent shadow.
Next time I will read before I write, because Adam is sure to get there first ;-)
Yes, this was certainly a quick fix. I wanted to get the chromium win builders happy ASAP. The real fix for my code is not to use the log2() functions at all since they're inefficient. There's a much better algorithm for what I'm doing there (exponential ramp).
In the meantime, I'll try to fix this as you suggest.