Need
to pass data from the vertex shader to the fragment shader
- We do that through a varying variable
- variable declared in both the vertex and fragment shader
- specially tagged to make it a varying
out
variable in the vertex shader
in
variable in the fragment shader
- all other declarations need to match (e.g., type, name)