A closed shape — a cube, a character that reads as solid — always has its inner faces hidden behind its outer ones from the camera’s point of view. Drawing those inner faces every time anyway means the GPU wastes half its effort rasterizing pixels no one will ever see. Backface culling checks whether each face’s direction (its normal) points toward or away from the camera ahead of time, and simply skips drawing it if it’s facing away.
It’s a performance win and a trap at the same time — leave the default (single-sided) setting on a thin plane or cloth that needs to be visible from both sides, and it vanishes entirely the moment you look at it from behind. three.js’s material.side lets you pick between FrontSide (default, culled), BackSide, and DoubleSide (draws both faces, no culling).
Blender, Maya, and C4D viewports all have a “backface culling” toggle too, so you can preview exactly which faces a real-time renderer would actually throw away. Deleting faces that will genuinely never be seen — the inside of a wall, the underside of terrain — at the modeling stage is the same optimization, done by hand instead of automatically.
When to use
Keep the default (culling on) to save real-time performance; switch to DoubleSide for cloth or thin panels that must be visible from both sides.