You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/log2/README.md

22 lines
515 B
Markdown

10 years ago
## Log2
Return the base 2 logarithm of the parameter
### Declaration
10 years ago
```glsl
float log2(float x)
vec2 log2(vec2 x)
vec3 log2(vec3 x)
vec4 log2(vec4 x)
```
### Parameters
```x``` specify the value of which to take the base 2 logarithm.
10 years ago
### Description
```log2()``` returns the base 2 logarithm of ```x```.
<div class="simpleFunction" data="y = log2(x); "></div>
### See Also
[log](/glossary/?search=log), [exp](/glossary/?search=exp), [exp2](/glossary/?search=exp2), [Chapter 05: Shaping Functions](/05/)