July 2013
Intermediate to advanced
600 pages
15h 15m
English
This appendix details all embedded functions supported by GLSL ES 1.0, including many that are not explained in this book but which are often used in programming shaders.
Note that, in all but texture lookup functions, the operations on vector or matrix arguments are carried out component-wise. For example,
vec2 deg = vec2(60, 80);vec2 rad = radians(deg);
In these examples, the components of the variable rad are assigned values converted from 60 and 80 degrees, respectively.

The following functions determine which components ...
Read now
Unlock full access