While everything in the real world is the result of light interacting with matter, some of these interactions are actually too complex to simulate using the light transport approach. This is when shading kicks in.

Figure 1: if you look at two objects under the same lighting conditions, if these objects seem to have the same color (same hue), but that one is darker than the other, then clearly, how bright they are is not the result of how much light falls on these objects, but more the result of how much light each one of these objects reflects back into their environment.
As mentioned in the previous chapter, simulating the appearance of an object requires that we can can compute for each point on the surface of that object, its color and its brightness. Color and brightness are tightly linked with each other. You need to distinguish between the brightness of an object which is due to how much light falls on its surface, and the brightness of an object's color (also sometimes called the color's luminance). The brightness of a color as well as its hue and saturation is a color property. If you look at two objects under the same lighting conditions, if these objects seem to have the same color (same chromaticity), but that one is darker than the other, then clearly, how bright they are is not the result of how much light falls on these objects, but more the result of how much light each one of these objects reflects back into their environment. In other words, these two objects have the same color (the same chromaticity) but one reflects more light than the other (or to put it differently one absorbs more light than the other). The brightness (or luminance) of their color is different. The characteristic color of an object is called albedo in computer graphics. How is this color found, is explained in the lesson on Colors (which you can find in the section Mathematics and Physics of Computer Graphics).
If we defined the color of an object as the ratio of the amount of reflected light over the amount of light incident on the surface (as explained in the note above), that color can't be greater than one. This doesn't mean though that the amount of light incident and reflected off of the surface of an object can't be greater than one (it's only the ratio between the two which can't be greater than one). What we actually see with our eyes, is the amount of light incident on a surface, multiplied by the object color and reflected back to the eye. For example if the energy of the light impinging upon the surface is 1000, and the color of the object is 0.5, then the amount of light actually reflected by the surface to the eye is 500 (this is actually wrong from the point of view of physics, but this is just for you to get the idea - in the lesson on shading and light transport, we will actually look into what this 1000 or 500 value actually means in terms of physical units, and learn that it's actually more complicated than just multiplying the two numbers together).
Thus assuming we know what the color of an object is, to compute the actual brightness of a point P on the surface of that object under some given lighting conditions (brightness as in the actual amount of light energy reflected by the surface to the eye and not as in the actual brightness or luminance of the object's albedo), we need to account for two things:
- How much light falls on the object at this point.
- How much light is reflected at this point in the viewing direction.
Remember again that for specular surfaces, the amount of light reflected by that surfaces depends on the angle of view. If you move around a mirror, the image you see in the mirror changes: the amount of light reflected towards you changes with the viewpoint.

Figure 2: to compute the actual brightness of a point P on the surface of that object under some given lighting conditions, we need to account for two things, how much light falls on the object at this point and how much light is reflected at this point in the viewing direction. To compute how much light arrives upon P, we need to sum up the contribution of the light sources (direct lighting) and from other surfaces (indirect lighting).
Assuming we know what the color of the object is (its albedo), we then need to find how much light arrives at the point (let's call it P again), and how much is reflected in the viewing direction, the direction from P to the eye.
- The former problems requires to "collect" or gather light above the surface at P, and is more a light transport problem. We already explained in the previous chapter how this can be done. Rays can be traced directly to lights to compute direct lighting and secondary rays can be spawned from P to compute indirect lighting (the contribution of other surfaces to the illumination of P). However, while it seems essentially like a light transport problem, we will see in the lessons on Shading and Light Transport that the direction of these rays is actually defined by the surface type (is it diffuse or specular), and that shaders play a role in choosing the direction of these rays. Note also that, other methods than ray tracing can be used to compute both direct and indirect lighting.
- The latter problem (how much light is reflected for a given direction) is far more complex and it will now be explained in more details.
First, you need to remember that light reflected back in the environment by a surface, is the result of very complex interactions between light rays (or photons if you know what they are) with the material the object is made of. There is three important things to note at this point:
- These interaction are generally so complex that it is not practical to simulate them.
- The amount of light reflected depends on the view direction. Surfaces generally don't reflect incident light equally in all directions. That's actually not true of perfectly diffuse surfaces (diffuse surfaces appear equally bright from all viewing directions,) but this is true of all specular surfaces and since most objects in the real-world have a mix of diffuse and specular reflections anyway, more often than not, light is generally not reflected equally.
- The amount of light redirected in the viewing direction, also depends on the incoming light direction. To compute how much light is reflected in the direction \(\omega_v\) ("v" here is used here for view and \(\omega\) is the Greek letter omega), we also need to take in account the incoming lighting direction \(\omega_i\) ("i" stands for incident or incoming). The idea is illustrated in figure 3. Let's see what happens when the surface from which a ray is reflected, is a mirror. According to the law of reflection, the angle between the incident direction \(\omega_i\) of a light ray and the normal at the point of incidence, and the direction between the reflected or mirror direction \(\omega_r\) and the normal are the same. When the viewing direction \(\omega_v\) and the reflected direction \(\omega_r\) are the same (figure 3 - top), then we see the reflected ray (it enters the eye). However when \(\omega_v\) and \(\omega_r\) are different (figure 3 - bottom), then because the reflected ray doesn't travel towards the eye, the eye doesn't see it. Thus, how much light is reflected towards the eye depends on the incident light direction \(\omega_i\) (as explained before) as well as the viewing direction \(\omega_v\).

Figure 3: for mirror surfaces, if the reflected ray and the view direction are not the same, the reflected ray of light is not visible by the eye. The amount of light reflected is a function of the incoming light direction and the viewing direction.
Let's summarise. What do we know?
- It's too complex to simulate light-matter interactions (interactions happening at the microscopic and atomic level). Thus, clearly we need to come up with a different solution.
- The amount of light reflected from a point varies with the view direction \(\omega_v\).
- The amount of light reflected from a point for a given view direction \(\omega_v\), depends on the incoming light direction \(\omega_i\).
Shading, which you can see as the part of the rendering process that is responsible for computing the amount of light reflected from surfaces to the eye (or other surfaces in the scene), depends on at least two variables: where light comes from (the incident light direction \(\omega_i\)) and where it goes to (the outgoing or viewing direction, \(\omega_v\)). Where light comes from is independent of the surface itself, but how much light is reflected back for a given direction, depends on the surface type: is it diffuse, or specular? As suggested before, gathering light arriving at the incident point is more a light transport problem. But regardless of the technique used to gather the amount of light arriving at P, what we need, is to actually know where this light comes from, as in from which direction. The job of putting all these things together, is done by what we call a shader. A shader can be seen as a program within your program, which is essential some sort of routine that takes an incident light direction and a view direction as an input variables and return the fraction of light the surface would reflect for these directions.
$$\text{ ratio of reflected light = shader }(\omega_i, \omega_o)$$Simulating light-matter interactions to get a result is complex, but hopefully the result of these numerous interactions is predictable and consistent, thus it can be approximated or modelled with mathematical functions. Where are these functions coming from? What are they? How are they found? We will answer these questions in the lessons from the section devoted to Shading. Let's only try to get an intuition of how and why this works for now.
The law of reflection for example which we introduced in a previous chapter, can be written as: $$\omega_r = \omega_i - 2(N . \omega_i) N$$
In plain english, it says that the reflection direction \(\omega_r\), can be computed as \(\omega_i\) minus two times the dot product between N (the surface normal at the point of incidence) and \(\omega_i\) (the incident light direction) multiplied by N. This equation has more to do with computing a direction than the amount of light reflected by the surface. However if for any given incident direction (\(\omega_i\)), you find out that \(\omega_r\) coincides with \(\omega_v\) (the view direction) then clearly, the ratio of reflected light for this particular configuration is 1 (figure 3 - top). If \(\omega_r\) and \(\omega_v\) are different though, then the amount of reflected light would be 0. To formalise this idea, you can write:
$$ \text {ratio of reflected light} = \begin{cases} 1 & \omega_r = \omega_o \\ 0 & \text{otherwise} \end{cases} $$What about simulating the appearance of a diffuse surface? For diffuse surfaces, we know that light is reflected equally in all directions. The amount of light reflected towards the eye is thus the total amount of light arriving at the surface (at any given point) multiplied by the surface color (the fraction of the total amount of incident light the surface reflects back in the environment), divided by some normalisation factor that needs to be there for mathematical/physical accuracy reason, but this will be explained in details in the lessons devoted to shading. Note that for diffuse reflections, the incoming and outgoing light directions have no influence on the amount of reflected light. But this is an exception in a way. For most material, the amount of reflected light depends on \(\omega_i\) and \(\omega_v\).
The behaviour of glossy surfaces, is the most difficult to reproduce with equations. Many solutions have been proposed, the simplest (and easiest to implement in code) being the Phong specular model, which you may have heard about.
However good models follow some well know properties which the Phong model doesn't have. One of this rules for instance, is that the model conserves energy. The amount of light reflected in all directions shouldn't be greater than the total amount of incident light. If a model doesn't have this property (the Phong model doesn't have that property), then it would actually break the laws of physics, and while it might provide a visually pleasing result, it would not produce one that is physically plausible.
Let's put these ideas together with some pseudo-code:
Notice how the code is separated in two main sections: a routine (line 11) to gather all light coming from all directions above P, and another routine (line 1), the shader, used to compute the fraction of light reflected by the surface for any given pair of incident and view direction. The loop (often called a light loop) is used to sum up the contribution of all possible light sources in the scene to the illumination of P. Each one of these light sources have a certain energy and of course comes from a certain direction (the direction defined by the line between P and the light source position in space), thus all we need to do is send this information to the shader, with the view direction. The shader will return which fraction for that given light source direction is reflected towards the eye and then multiply the result of the shader with the amount of light produced by this light source. Summing up this results for all possible light sources in the scene, gives the total amount of light reflected from P towards the eye (which is the result we are looking for).
Not that in the sum (line 18), there is a third term (a dot product between the normal and the light direction). This term is very important in shading and relates to what we call the cosine law. It will be explained in details in the sections on Light Transport and Shading (you can also find information about it in the lesson on the Rendering Equation which you will find in this section). For now you should just know that it is there to account for the way light energy is spread across the surface of an object, as the angle between the surface and the light source varies.
Conclusion
There is a fine line between light transport and shading. In fact, as we will learn in the section on Light Transport, light transport algorithms will often rely on shaders, to find out in which direction they should spawn secondary rays to compute indirect lighting.
The two things you should remember from this chapters are, the definition of shading and what a shader is:
- Shading, is the part of the rendering process that is responsible for computing the amount of light reflected in any given viewing direction. In other word, it is where and when we give objects in the image their final appearance from a particular viewpoint, how they look, their color, their texture, their brightness, etc. Simulating the appearance of an object requires to answer one question only: how much light does an object reflect back to the eye (or any other direction for that matter which is particularly useful when indirect lighting is computed), over the total amount it receives?
Shaders are designed to answer this question. You can see a shader as some sort of black box to which you ask the question: "if this object is made of wood, if this wood has this given color and this given roughness, if some quantity of light impinges upon this object from the direction \(\omega_i\), how much of that light would be reflected by this object back in the environment in the direction \(\omega_v\)?". The shader will answer this question. We like to describe it as a black box, not because what's happening inside that box is mysterious, but more because it can be seen as a separate entity in the rendering system (it serves only one function which is to answer the above question, and answering this question doesn't require the shader to have any over knowledge about the system than the surface property - its roughness, its color, etc. - and the incoming and outgoing direction being considered) which is why shaders in realtime APIs for example (such as OpenGL - but this often true of all rendering systems whether realtime or off-line) are written separately from the rest of your application.
What's happening in this box is not mysterious at all. What gives objects their unique appearance is the result of complex interactions between light particles (photons) and atoms objects are made of. Simulating these interactions is not practical. We observed though, that the result of these interactions is predictable and consistent, and we know that mathematics can be used to "model", or represent, how the real world works. A mathematical model is never exactly the same as the real thing, however it is convenient way of expressing a complex problem in a compact form, and can be used to compute the solution (or approximation) of a complex problem in a fraction of the time it would take to actually simulate the real thing. The science of shading, is about developing such models to describe the appearance of objects, as a result of the way light interacts with them at the micro- and atomic scale. The complexity of these models really depends on the type of surface we want to replicate the appearance of. Models to replicate the appearance of perfectly diffuse and mirror-like surface are simple. Coming up with good models to replicate the look of glossy and translucent surfaces is a much harder task.
These models will be studied in the Shading section.