2015-04-17 04:52:51 +00:00
|
|
|
## Log2
|
|
|
|
Return the base 2 logarithm of the parameter
|
|
|
|
|
2015-04-18 14:41:34 +00:00
|
|
|
### Declaration
|
2015-04-17 04:52:51 +00:00
|
|
|
```glsl
|
|
|
|
float log2(float x)
|
|
|
|
vec2 log2(vec2 x)
|
|
|
|
vec3 log2(vec3 x)
|
|
|
|
vec4 log2(vec4 x)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
2015-04-18 14:41:34 +00:00
|
|
|
```x``` specify the value of which to take the base 2 logarithm.
|
2015-04-17 04:52:51 +00:00
|
|
|
|
|
|
|
### Description
|
|
|
|
```log2()``` returns the base 2 logarithm of ```x```.
|
|
|
|
|
|
|
|
<div class="simpleFunction" data="y = log2(x); "></div>
|
|
|
|
|
|
|
|
### See Also
|
|
|
|
|
2015-04-17 18:16:45 +00:00
|
|
|
[log](index.html#log.md), [exp](index.html#exp.md), [exp2](index.html#exp2.md), [Chapter 05: Shaping Functions](../05/)
|