Physically Based Rendering
Physically based rendering (PBR) is the dominant paradigm in modern real-time 3D graphics, where materials and lighting are modeled to approximate real-world physics rather than using ad-hoc artistic tricks. The core principle is energy conservation: the amount of light reflected from a surface never exceeds the amount received. This constraint, combined with physically motivated material models, produces visuals that look correct under any lighting condition.
Before PBR, game artists tuned material parameters per-scene and per-light. A metal surface that looked right in one environment would look wrong in another because the shading model didn't respect physical principles. PBR eliminated this: define a material once (its base color, roughness, and metalness), and it renders correctly everywhere — under noon sunlight, indoor fluorescence, or dramatic sunset.
The standard PBR material model uses a small set of physically meaningful parameters. Base color (albedo) defines the surface's diffuse reflectance. Metalness distinguishes dielectric materials (plastics, wood, fabric) from conductors (metals), which reflect light differently. Roughness controls the sharpness of reflections — from mirror-smooth to matte. These three maps, combined with normal maps for surface detail, define the overwhelming majority of real-world materials.
The underlying math models microfacet theory: surfaces are treated as collections of tiny mirror-like facets at varying orientations. The roughness parameter controls the distribution of facet angles. The Fresnel effect — surfaces becoming more reflective at grazing angles — is automatically handled. These physical foundations mean PBR shaders produce realistic edge highlights, specular falloff, and material transitions without manual tuning.
PBR became the industry standard through adoption in major engines: Unreal Engine 4 (2014), Unity 5 (2015), and subsequently every major game engine and 3D application. Material libraries like Quixel Megascans provide thousands of PBR-ready scanned materials. The creator economy benefit is significant: artists share and reuse PBR materials across projects because they work consistently everywhere.
The combination of PBR with global illumination (realistic indirect lighting), virtual geometry (unlimited geometric detail), and neural rendering techniques is closing the gap between real-time graphics and offline film rendering. Modern game engines running on current GPU hardware produce visuals that were impossible in feature films just a decade ago.
Further Reading
- Games as Products, Games as Platforms — Jon Radoff