Chapter 1: How Shader Development Works Chapter Description:
It will give an overview on the common basics of Shader Development, knowledge that theyll be able to reuse for any platform (OpenGL, DirectX, Vulkan).
Shading is a dataflow process in one direction: vertices, textures and shaders enter, and colors in a framebuffer exit, at the other end.
Chapter 2: Your first Unity Shader
Well create a basic project in Unity, with a simple Shader, so the reader can put in practice what she just learned, and get started with the ShaderLab system.
Chapter 3: Your first Lighting Unity shader
We extend the shader from the last chapter, adding Diffuse and Specular lighting, but not using Physically Based principles yet, so the reader can learn on shorter, simpler shaders first, and also understand how shading has evolved in time.
Chapter 4: What is Physically Based Shading?
We cover the basics of Physically Based Shading, using pictures and graphs, as well. We mention, and give some intuition for, the necessary math formulas which well explain further in a following chapter, where we implement the principles.
Chapter 5: Your first Physically Based Shader
We implement a custom physically based shader, modifying the example from chapter 2. We explain what properties it needs to have to be properly PBS, and how we can lose them, if were not careful.
Chapter 6: Your first Image Effect
We implement Depth of Field as an Image Effect, which helps improve our scenes realism, and introduces principles that can be reused for any Image Effect.
Chapter 7: HDR, Tone Mapping and Color Grading
Using HDR is a necessary prerequisite of PBS, but an HDR buffer needs a tone mapping effect to be rendered to our screens correctly. A tone mapping Image Effect can be used to artistic ends as well, to imitate the look of film stock. Color Grading can also be implemented as an image effect. In this chapter well consolidate all our image effects in as few shader passes as possible, and well explain how that helps rendering performance.
Chapter 8: The Ethology of BRDFs
Bidirectional Reflectance Distribution Functions are models of how light behaves on a surface. There are many such models, and each is particularly effective at reproducing different types of surfaces. Well give an overview of the most used ones.
Chapter 9: The Implementation of BRDFs
Were going to implement a few different BRDFs that we presented in the last chapter, and show how they behave differently, and are appropriate for different types of surfaces. Were still going to keep the shader basic, not hooking into the Unity subsystems, except for shadows and directional lights.
(This subject may require more than one chapter)
Chapter 10: Approximate your BRDFs
Even the most beautiful shader is useless, if it doesnt run fast enough. Well introduce the art of using approximations to make your shaders faster, without sacrificing too much quality.
Chapter 11: How the Standard Shader works
Were going to discuss the BRDF choices made in the Unity Standard Shader, and how they obtain performance, and ease-of-use for the artist.
Chapter 12: The Unity Standard Shader Subsystems, and What They Can Do for You
Overview of the features you can add to your shader system, if you make the effort of interfacing with the Unity shader code: Global Illumination, Shadows, Image Effects, Reflection Probes.
Chapter 13: Hooking into the Unity Shader Subsystems
The Unity Shader Subsystems code is mostly undocumented, and changes every few version. But still you need to interface to it to achieve best result in shorter time. In this chapter well cover how to attack this problem, so you can update your code even if the hooks change.
(This subject may require more than one chapter)
Chapter 14: Reflections and Cube Maps
Reflections and indirect light are the trickiest part of implementing a BRDF. In this chapter well introduce the problems, and show some solutions. Well also give a list of tools that can be used or modified to bake properly filtered cubemaps for the BRDF of your choice.
Chapter 15: Making Shaders Artists Will Use
Were going to discuss the need to balance control, with how complex the settings can get. Too much complexity and unexplained controls make a shader unintuitive for the artists, and theyll end up not using it, or cargo-culting it, squandering your efforts.
Chapter 16: Code Complexity and Ubershaders
Shader lighting systems can get very complex, as reading the Unity Standard Shader can attest. Well introduce ways of coping with the complexity which commonly used in the industry, and what they entail in terms of compile times, and iteration speed in Unity.
Chapter 17: When Shading Goes Wrong, Check The Models
Often a sloppy model can squander all of your efforts. This is a list of possible causes to check, if your shader is mysteriously failing on one or more of your models.
Chapter 18: Resources to Keep Up with the Bleeding Edge, and How to Read Them
The Game Industry never stops. Every year developers flock to GDC and Siggraph to catch up on the bleeding edge of the tech. Well cover where to find and how to read up-to-date, dense technical material.